blob: 322d3aa8f14a6763782ed601908f8195d27fc4cc [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"
Elliott Hughes76160052012-12-12 16:31:20 -080029#include "base/unix_file/fd_file.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070030#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070032#include "dex_file-inl.h"
Elliott Hughese3c845c2012-02-28 17:23:01 -080033#include "dex_instruction.h"
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080034#include "disassembler.h"
Andreas Gampe54fc26c2014-09-04 21:47:42 -070035#include "elf_builder.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080036#include "gc_map.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070037#include "gc/space/image_space.h"
38#include "gc/space/large_object_space.h"
39#include "gc/space/space-inl.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070040#include "image.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080041#include "indenter.h"
Ian Rogers1809a722013-08-09 22:05:32 -070042#include "mapping_table.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070043#include "mirror/art_field-inl.h"
44#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080045#include "mirror/array-inl.h"
46#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080047#include "mirror/object-inl.h"
48#include "mirror/object_array-inl.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080049#include "oat.h"
Vladimir Marko8a630572014-04-09 18:45:35 +010050#include "oat_file-inl.h"
Elliott Hughese5448b52012-01-18 16:44:06 -080051#include "os.h"
Andreas Gampe54fc26c2014-09-04 21:47:42 -070052#include "output_stream.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070053#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070054#include "scoped_thread_state_change.h"
Andreas Gampe00b25f32014-09-17 21:49:05 -070055#include "ScopedLocalRef.h"
Mathieu Chartierc22c59e2014-02-24 15:16:06 -080056#include "thread_list.h"
Ian Rogersef7d42f2014-01-06 12:55:46 -080057#include "verifier/dex_gc_map.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080058#include "verifier/method_verifier.h"
Ian Rogers1809a722013-08-09 22:05:32 -070059#include "vmap_table.h"
Andreas Gampe00b25f32014-09-17 21:49:05 -070060#include "well_known_classes.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070061
Igor Murashkin37743352014-11-13 14:38:00 -080062#include <sys/stat.h>
63#include "cmdline.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070064
Igor Murashkin37743352014-11-13 14:38:00 -080065namespace art {
Brian Carlstrom78128a62011-09-15 17:21:19 -070066
Ian Rogersff1ed472011-09-20 13:46:24 -070067const char* image_roots_descriptions_[] = {
Ian Rogers19846512012-02-24 11:42:47 -080068 "kResolutionMethod",
Jeff Hao88474b42013-10-23 16:24:40 -070069 "kImtConflictMethod",
Mathieu Chartier2d2621a2014-10-23 16:48:06 -070070 "kImtUnimplementedMethod",
Jeff Hao88474b42013-10-23 16:24:40 -070071 "kDefaultImt",
Brian Carlstrome24fa612011-09-29 00:53:55 -070072 "kCalleeSaveMethod",
Brian Carlstromaded5f72011-10-07 17:15:04 -070073 "kRefsOnlySaveMethod",
74 "kRefsAndArgsSaveMethod",
Brian Carlstrom58ae9412011-10-04 00:56:06 -070075 "kDexCaches",
Brian Carlstrom34f426c2011-10-04 12:58:02 -070076 "kClassRoots",
Brian Carlstrom78128a62011-09-15 17:21:19 -070077};
78
Ian Rogers0279ebb2014-10-08 17:27:48 -070079class OatSymbolizer FINAL : public CodeOutput {
Andreas Gampe54fc26c2014-09-04 21:47:42 -070080 public:
Ian Rogers0279ebb2014-10-08 17:27:48 -070081 explicit OatSymbolizer(const OatFile* oat_file, const std::string& output_name) :
82 oat_file_(oat_file), builder_(nullptr), elf_output_(nullptr),
83 output_name_(output_name.empty() ? "symbolized.oat" : output_name) {
84 }
Andreas Gampe54fc26c2014-09-04 21:47:42 -070085
86 bool Init() {
87 Elf32_Word oat_data_size = oat_file_->GetOatHeader().GetExecutableOffset();
88
89 uint32_t diff = static_cast<uint32_t>(oat_file_->End() - oat_file_->Begin());
90 uint32_t oat_exec_size = diff - oat_data_size;
Vladimir Marko5c42c292015-02-25 12:02:49 +000091 uint32_t oat_bss_size = oat_file_->BssSize();
Andreas Gampe54fc26c2014-09-04 21:47:42 -070092
Andreas Gampe54fc26c2014-09-04 21:47:42 -070093 elf_output_ = OS::CreateEmptyFile(output_name_.c_str());
94
95 builder_.reset(new ElfBuilder<Elf32_Word, Elf32_Sword, Elf32_Addr, Elf32_Dyn,
96 Elf32_Sym, Elf32_Ehdr, Elf32_Phdr, Elf32_Shdr>(
97 this,
98 elf_output_,
99 oat_file_->GetOatHeader().GetInstructionSet(),
100 0,
101 oat_data_size,
102 oat_data_size,
103 oat_exec_size,
Vladimir Marko5c42c292015-02-25 12:02:49 +0000104 RoundUp(oat_data_size + oat_exec_size, kPageSize),
105 oat_bss_size,
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700106 true,
107 false));
108
109 if (!builder_->Init()) {
110 builder_.reset(nullptr);
111 return false;
112 }
113
114 return true;
115 }
116
117 typedef void (OatSymbolizer::*Callback)(const DexFile::ClassDef&,
118 uint32_t,
119 const OatFile::OatMethod&,
120 const DexFile&,
121 uint32_t,
122 const DexFile::CodeItem*,
123 uint32_t);
124
125 bool Symbolize() {
126 if (builder_.get() == nullptr) {
127 return false;
128 }
129
130 Walk(&art::OatSymbolizer::RegisterForDedup);
131
132 NormalizeState();
133
134 Walk(&art::OatSymbolizer::AddSymbol);
135
136 bool result = builder_->Write();
137
Andreas Gampe4303ba92014-11-06 01:00:46 -0800138 // Ignore I/O errors.
139 UNUSED(elf_output_->FlushClose());
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700140
141 return result;
142 }
143
144 void Walk(Callback callback) {
145 std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file_->GetOatDexFiles();
146 for (size_t i = 0; i < oat_dex_files.size(); i++) {
147 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i];
148 CHECK(oat_dex_file != NULL);
149 WalkOatDexFile(oat_dex_file, callback);
150 }
151 }
152
153 void WalkOatDexFile(const OatFile::OatDexFile* oat_dex_file, Callback callback) {
154 std::string error_msg;
155 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
156 if (dex_file.get() == nullptr) {
157 return;
158 }
159 for (size_t class_def_index = 0;
160 class_def_index < dex_file->NumClassDefs();
161 class_def_index++) {
162 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
163 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
164 OatClassType type = oat_class.GetType();
165 switch (type) {
166 case kOatClassAllCompiled:
167 case kOatClassSomeCompiled:
168 WalkOatClass(oat_class, *dex_file.get(), class_def, callback);
169 break;
170
171 case kOatClassNoneCompiled:
172 case kOatClassMax:
173 // Ignore.
174 break;
175 }
176 }
177 }
178
179 void WalkOatClass(const OatFile::OatClass& oat_class, const DexFile& dex_file,
180 const DexFile::ClassDef& class_def, Callback callback) {
Ian Rogers13735952014-10-08 12:43:28 -0700181 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700182 if (class_data == nullptr) { // empty class such as a marker interface?
183 return;
184 }
185 // Note: even if this is an interface or a native class, we still have to walk it, as there
186 // might be a static initializer.
187 ClassDataItemIterator it(dex_file, class_data);
188 SkipAllFields(&it);
189 uint32_t class_method_idx = 0;
190 while (it.HasNextDirectMethod()) {
191 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
192 WalkOatMethod(class_def, class_method_idx, oat_method, dex_file, it.GetMemberIndex(),
Andreas Gampe51829322014-08-25 15:05:04 -0700193 it.GetMethodCodeItem(), it.GetMethodAccessFlags(), callback);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700194 class_method_idx++;
195 it.Next();
196 }
197 while (it.HasNextVirtualMethod()) {
198 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
199 WalkOatMethod(class_def, class_method_idx, oat_method, dex_file, it.GetMemberIndex(),
Andreas Gampe51829322014-08-25 15:05:04 -0700200 it.GetMethodCodeItem(), it.GetMethodAccessFlags(), callback);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700201 class_method_idx++;
202 it.Next();
203 }
204 DCHECK(!it.HasNext());
205 }
206
207 void WalkOatMethod(const DexFile::ClassDef& class_def, uint32_t class_method_index,
208 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
209 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
210 uint32_t method_access_flags, Callback callback) {
211 if ((method_access_flags & kAccAbstract) != 0) {
212 // Abstract method, no code.
213 return;
214 }
215 if (oat_method.GetCodeOffset() == 0) {
216 // No code.
217 return;
218 }
219
220 (this->*callback)(class_def, class_method_index, oat_method, dex_file, dex_method_idx, code_item,
221 method_access_flags);
222 }
223
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700224 void RegisterForDedup(const DexFile::ClassDef& class_def ATTRIBUTE_UNUSED,
225 uint32_t class_method_index ATTRIBUTE_UNUSED,
226 const OatFile::OatMethod& oat_method,
227 const DexFile& dex_file ATTRIBUTE_UNUSED,
228 uint32_t dex_method_idx ATTRIBUTE_UNUSED,
229 const DexFile::CodeItem* code_item ATTRIBUTE_UNUSED,
230 uint32_t method_access_flags ATTRIBUTE_UNUSED) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700231 state_[oat_method.GetCodeOffset()]++;
232 }
233
234 void NormalizeState() {
235 for (auto& x : state_) {
236 if (x.second == 1) {
237 state_[x.first] = 0;
238 }
239 }
240 }
241
242 enum class DedupState { // private
243 kNotDeduplicated,
244 kDeduplicatedFirst,
245 kDeduplicatedOther
246 };
247 DedupState IsDuplicated(uint32_t offset) {
248 if (state_[offset] == 0) {
249 return DedupState::kNotDeduplicated;
250 }
251 if (state_[offset] == 1) {
252 return DedupState::kDeduplicatedOther;
253 }
254 state_[offset] = 1;
255 return DedupState::kDeduplicatedFirst;
256 }
257
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700258 void AddSymbol(const DexFile::ClassDef& class_def ATTRIBUTE_UNUSED,
259 uint32_t class_method_index ATTRIBUTE_UNUSED,
260 const OatFile::OatMethod& oat_method,
261 const DexFile& dex_file,
262 uint32_t dex_method_idx,
263 const DexFile::CodeItem* code_item ATTRIBUTE_UNUSED,
264 uint32_t method_access_flags ATTRIBUTE_UNUSED) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700265 DedupState dedup = IsDuplicated(oat_method.GetCodeOffset());
266 if (dedup != DedupState::kDeduplicatedOther) {
267 std::string pretty_name = PrettyMethod(dex_method_idx, dex_file, true);
268
269 if (dedup == DedupState::kDeduplicatedFirst) {
270 pretty_name = "[Dedup]" + pretty_name;
271 }
272
273 ElfSymtabBuilder<Elf32_Word, Elf32_Sword, Elf32_Addr,
Ian Rogers0279ebb2014-10-08 17:27:48 -0700274 Elf32_Sym, Elf32_Shdr>* symtab = builder_->GetSymtabBuilder();
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700275
Ian Rogers0279ebb2014-10-08 17:27:48 -0700276 symtab->AddSymbol(pretty_name, &builder_->GetTextBuilder(),
277 oat_method.GetCodeOffset() - oat_file_->GetOatHeader().GetExecutableOffset(),
278 true, oat_method.GetQuickCodeSize(), STB_GLOBAL, STT_FUNC);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700279 }
280 }
281
Vladimir Markof4da6752014-08-01 19:04:18 +0100282 // Set oat data offset. Required by ElfBuilder/CodeOutput.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700283 void SetCodeOffset(size_t offset ATTRIBUTE_UNUSED) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100284 // Nothing to do.
285 }
286
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700287 // Write oat code. Required by ElfBuilder/CodeOutput.
288 bool Write(OutputStream* out) {
289 return out->WriteFully(oat_file_->Begin(), oat_file_->End() - oat_file_->Begin());
290 }
291
292 private:
293 static void SkipAllFields(ClassDataItemIterator* it) {
294 while (it->HasNextStaticField()) {
295 it->Next();
296 }
297 while (it->HasNextInstanceField()) {
298 it->Next();
299 }
300 }
301
302 const OatFile* oat_file_;
303 std::unique_ptr<ElfBuilder<Elf32_Word, Elf32_Sword, Elf32_Addr, Elf32_Dyn,
304 Elf32_Sym, Elf32_Ehdr, Elf32_Phdr, Elf32_Shdr> > builder_;
305 File* elf_output_;
306 std::unordered_map<uint32_t, uint32_t> state_;
Ian Rogers0279ebb2014-10-08 17:27:48 -0700307 const std::string output_name_;
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700308};
309
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700310class OatDumperOptions {
311 public:
312 OatDumperOptions(bool dump_raw_mapping_table,
313 bool dump_raw_gc_map,
314 bool dump_vmap,
315 bool disassemble_code,
Andreas Gampe00b25f32014-09-17 21:49:05 -0700316 bool absolute_addresses,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800317 const char* class_filter,
318 const char* method_filter,
319 bool list_classes,
320 bool list_methods,
321 const char* export_dex_location,
322 uint32_t addr2instr)
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700323 : dump_raw_mapping_table_(dump_raw_mapping_table),
324 dump_raw_gc_map_(dump_raw_gc_map),
325 dump_vmap_(dump_vmap),
326 disassemble_code_(disassemble_code),
Andreas Gampe00b25f32014-09-17 21:49:05 -0700327 absolute_addresses_(absolute_addresses),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800328 class_filter_(class_filter),
Nicolas Geoffray3fcd2202014-11-12 18:02:36 +0000329 method_filter_(method_filter),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800330 list_classes_(list_classes),
331 list_methods_(list_methods),
332 export_dex_location_(export_dex_location),
333 addr2instr_(addr2instr),
Igor Murashkin37743352014-11-13 14:38:00 -0800334 class_loader_(nullptr) {}
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700335
336 const bool dump_raw_mapping_table_;
337 const bool dump_raw_gc_map_;
338 const bool dump_vmap_;
339 const bool disassemble_code_;
340 const bool absolute_addresses_;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800341 const char* const class_filter_;
Nicolas Geoffray3fcd2202014-11-12 18:02:36 +0000342 const char* const method_filter_;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800343 const bool list_classes_;
344 const bool list_methods_;
345 const char* const export_dex_location_;
346 uint32_t addr2instr_;
Andreas Gampe00b25f32014-09-17 21:49:05 -0700347 Handle<mirror::ClassLoader>* class_loader_;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700348};
349
Elliott Hughese3c845c2012-02-28 17:23:01 -0800350class OatDumper {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700351 public:
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800352 explicit OatDumper(const OatFile& oat_file, const OatDumperOptions& options)
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000353 : oat_file_(oat_file),
Elliott Hughesa72ec822012-03-05 17:12:22 -0800354 oat_dex_files_(oat_file.GetOatDexFiles()),
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700355 options_(options),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800356 resolved_addr2instr_(0),
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800357 instruction_set_(oat_file_.GetOatHeader().GetInstructionSet()),
358 disassembler_(Disassembler::Create(instruction_set_,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800359 new DisassemblerOptions(options_.absolute_addresses_,
Alexandre Ramesa37d9252014-10-27 11:28:14 +0000360 oat_file.Begin(),
361 true /* can_read_litals_ */))) {
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800362 CHECK(options_.class_loader_ != nullptr);
363 CHECK(options_.class_filter_ != nullptr);
364 CHECK(options_.method_filter_ != nullptr);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800365 AddAllOffsets();
366 }
367
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700368 ~OatDumper() {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700369 delete disassembler_;
370 }
371
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800372 InstructionSet GetInstructionSet() {
373 return instruction_set_;
374 }
375
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700376 bool Dump(std::ostream& os) {
377 bool success = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800378 const OatHeader& oat_header = oat_file_.GetOatHeader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700379
380 os << "MAGIC:\n";
381 os << oat_header.GetMagic() << "\n\n";
382
383 os << "CHECKSUM:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800384 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700385
Elliott Hughesa72ec822012-03-05 17:12:22 -0800386 os << "INSTRUCTION SET:\n";
387 os << oat_header.GetInstructionSet() << "\n\n";
388
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700389 {
390 std::unique_ptr<const InstructionSetFeatures> features(
391 InstructionSetFeatures::FromBitmap(oat_header.GetInstructionSet(),
392 oat_header.GetInstructionSetFeaturesBitmap()));
393 os << "INSTRUCTION SET FEATURES:\n";
394 os << features->GetFeatureString() << "\n\n";
395 }
Dave Allison70202782013-10-22 17:52:19 -0700396
Brian Carlstromaded5f72011-10-07 17:15:04 -0700397 os << "DEX FILE COUNT:\n";
398 os << oat_header.GetDexFileCount() << "\n\n";
399
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800400#define DUMP_OAT_HEADER_OFFSET(label, offset) \
401 os << label " OFFSET:\n"; \
402 os << StringPrintf("0x%08x", oat_header.offset()); \
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800403 if (oat_header.offset() != 0 && options_.absolute_addresses_) { \
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800404 os << StringPrintf(" (%p)", oat_file_.Begin() + oat_header.offset()); \
405 } \
406 os << StringPrintf("\n\n");
407
408 DUMP_OAT_HEADER_OFFSET("EXECUTABLE", GetExecutableOffset);
409 DUMP_OAT_HEADER_OFFSET("INTERPRETER TO INTERPRETER BRIDGE",
410 GetInterpreterToInterpreterBridgeOffset);
411 DUMP_OAT_HEADER_OFFSET("INTERPRETER TO COMPILED CODE BRIDGE",
412 GetInterpreterToCompiledCodeBridgeOffset);
413 DUMP_OAT_HEADER_OFFSET("JNI DLSYM LOOKUP",
414 GetJniDlsymLookupOffset);
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800415 DUMP_OAT_HEADER_OFFSET("QUICK GENERIC JNI TRAMPOLINE",
416 GetQuickGenericJniTrampolineOffset);
417 DUMP_OAT_HEADER_OFFSET("QUICK IMT CONFLICT TRAMPOLINE",
418 GetQuickImtConflictTrampolineOffset);
419 DUMP_OAT_HEADER_OFFSET("QUICK RESOLUTION TRAMPOLINE",
420 GetQuickResolutionTrampolineOffset);
421 DUMP_OAT_HEADER_OFFSET("QUICK TO INTERPRETER BRIDGE",
422 GetQuickToInterpreterBridgeOffset);
423#undef DUMP_OAT_HEADER_OFFSET
Brian Carlstromaded5f72011-10-07 17:15:04 -0700424
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700425 os << "IMAGE PATCH DELTA:\n";
426 os << StringPrintf("%d (0x%08x)\n\n",
427 oat_header.GetImagePatchDelta(),
428 oat_header.GetImagePatchDelta());
Alex Lighta59dd802014-07-02 16:28:08 -0700429
Brian Carlstrom28db0122012-10-18 16:20:41 -0700430 os << "IMAGE FILE LOCATION OAT CHECKSUM:\n";
431 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum());
432
433 os << "IMAGE FILE LOCATION OAT BEGIN:\n";
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800434 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700435
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700436 // Print the key-value store.
437 {
438 os << "KEY VALUE STORE:\n";
439 size_t index = 0;
440 const char* key;
441 const char* value;
442 while (oat_header.GetStoreKeyValuePairByIndex(index, &key, &value)) {
443 os << key << " = " << value << "\n";
444 index++;
445 }
446 os << "\n";
447 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700448
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800449 if (options_.absolute_addresses_) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700450 os << "BEGIN:\n";
451 os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700452
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700453 os << "END:\n";
454 os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
455 }
456
457 os << "SIZE:\n";
458 os << oat_file_.Size() << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700459
460 os << std::flush;
461
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800462 // If set, adjust relative address to be searched
463 if (options_.addr2instr_ != 0) {
464 resolved_addr2instr_ = options_.addr2instr_ + oat_header.GetExecutableOffset();
465 os << "SEARCH ADDRESS (executable offset + input):\n";
466 os << StringPrintf("0x%08x\n\n", resolved_addr2instr_);
467 }
468
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800469 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
470 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700471 CHECK(oat_dex_file != nullptr);
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800472
473 // If file export selected skip file analysis
474 if (options_.export_dex_location_) {
475 if (!ExportDexFile(os, *oat_dex_file)) {
476 success = false;
477 }
478 } else {
479 if (!DumpOatDexFile(os, *oat_dex_file)) {
480 success = false;
481 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700482 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700483 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700484 os << std::flush;
485 return success;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700486 }
487
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800488 size_t ComputeSize(const void* oat_data) {
Ian Rogers13735952014-10-08 12:43:28 -0700489 if (reinterpret_cast<const uint8_t*>(oat_data) < oat_file_.Begin() ||
490 reinterpret_cast<const uint8_t*>(oat_data) > oat_file_.End()) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800491 return 0; // Address not in oat file
492 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800493 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) -
494 reinterpret_cast<uintptr_t>(oat_file_.Begin());
495 auto it = offsets_.upper_bound(begin_offset);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800496 CHECK(it != offsets_.end());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800497 uintptr_t end_offset = *it;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800498 return end_offset - begin_offset;
499 }
500
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800501 InstructionSet GetOatInstructionSet() {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700502 return oat_file_.GetOatHeader().GetInstructionSet();
503 }
504
Ian Rogersef7d42f2014-01-06 12:55:46 -0800505 const void* GetQuickOatCode(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800506 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
507 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700508 CHECK(oat_dex_file != nullptr);
509 std::string error_msg;
Ian Rogers700a4022014-05-19 16:49:03 -0700510 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700511 if (dex_file.get() == nullptr) {
512 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
513 << "': " << error_msg;
514 } else {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -0800515 const char* descriptor = m->GetDeclaringClassDescriptor();
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700516 const DexFile::ClassDef* class_def =
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -0800517 dex_file->FindClassDef(descriptor, ComputeModifiedUtf8Hash(descriptor));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700518 if (class_def != nullptr) {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700519 uint16_t class_def_index = dex_file->GetIndexForClassDef(*class_def);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100520 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800521 size_t method_index = m->GetMethodIndex();
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100522 return oat_class.GetOatMethod(method_index).GetQuickCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800523 }
524 }
525 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700526 return nullptr;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800527 }
528
Brian Carlstromaded5f72011-10-07 17:15:04 -0700529 private:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800530 void AddAllOffsets() {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800531 // We don't know the length of the code for each method, but we need to know where to stop
532 // when disassembling. What we do know is that a region of code will be followed by some other
533 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
534 // of a piece of code by using upper_bound to find the start of the next region.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800535 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
536 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700537 CHECK(oat_dex_file != nullptr);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700538 std::string error_msg;
Ian Rogers700a4022014-05-19 16:49:03 -0700539 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700540 if (dex_file.get() == nullptr) {
541 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
542 << "': " << error_msg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800543 continue;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800544 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800545 offsets_.insert(reinterpret_cast<uintptr_t>(&dex_file->GetHeader()));
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800546 for (size_t class_def_index = 0;
547 class_def_index < dex_file->NumClassDefs();
548 class_def_index++) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800549 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100550 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
Ian Rogers13735952014-10-08 12:43:28 -0700551 const uint8_t* class_data = dex_file->GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700552 if (class_data != nullptr) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800553 ClassDataItemIterator it(*dex_file, class_data);
554 SkipAllFields(it);
555 uint32_t class_method_index = 0;
556 while (it.HasNextDirectMethod()) {
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100557 AddOffsets(oat_class.GetOatMethod(class_method_index++));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800558 it.Next();
559 }
560 while (it.HasNextVirtualMethod()) {
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100561 AddOffsets(oat_class.GetOatMethod(class_method_index++));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800562 it.Next();
563 }
564 }
565 }
566 }
567
568 // If the last thing in the file is code for a method, there won't be an offset for the "next"
569 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
570 // for the end of the file.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800571 offsets_.insert(oat_file_.Size());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800572 }
573
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700574 static uint32_t AlignCodeOffset(uint32_t maybe_thumb_offset) {
575 return maybe_thumb_offset & ~0x1; // TODO: Make this Thumb2 specific.
576 }
577
Elliott Hughese3c845c2012-02-28 17:23:01 -0800578 void AddOffsets(const OatFile::OatMethod& oat_method) {
Brian Carlstrom95ba0dc2012-03-05 22:06:14 -0800579 uint32_t code_offset = oat_method.GetCodeOffset();
580 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
581 code_offset &= ~0x1;
582 }
583 offsets_.insert(code_offset);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800584 offsets_.insert(oat_method.GetMappingTableOffset());
585 offsets_.insert(oat_method.GetVmapTableOffset());
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800586 offsets_.insert(oat_method.GetGcMapOffset());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800587 }
588
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700589 bool DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
590 bool success = true;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800591 bool stop_analysis = false;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700592 os << "OatDexFile:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800593 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800594 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700595
596 // Create the verifier early.
597
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700598 std::string error_msg;
Ian Rogers700a4022014-05-19 16:49:03 -0700599 std::unique_ptr<const DexFile> dex_file(oat_dex_file.OpenDexFile(&error_msg));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700600 if (dex_file.get() == nullptr) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700601 os << "NOT FOUND: " << error_msg << "\n\n";
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700602 os << std::flush;
603 return false;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700604 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800605 for (size_t class_def_index = 0;
606 class_def_index < dex_file->NumClassDefs();
607 class_def_index++) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700608 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
609 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800610
611 // TODO: Support regex
612 if (DescriptorToDot(descriptor).find(options_.class_filter_) == std::string::npos) {
613 continue;
614 }
615
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700616 uint32_t oat_class_offset = oat_dex_file.GetOatClassOffset(class_def_index);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100617 const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700618 os << StringPrintf("%zd: %s (offset=0x%08x) (type_idx=%d)",
619 class_def_index, descriptor, oat_class_offset, class_def.class_idx_)
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100620 << " (" << oat_class.GetStatus() << ")"
621 << " (" << oat_class.GetType() << ")\n";
622 // TODO: include bitmap here if type is kOatClassSomeCompiled?
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800623 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
624 std::ostream indented_os(&indent_filter);
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800625 if (options_.list_classes_) continue;
626 if (!DumpOatClass(indented_os, oat_class, *(dex_file.get()), class_def, &stop_analysis)) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700627 success = false;
628 }
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800629 if (stop_analysis) {
630 os << std::flush;
631 return success;
632 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700633 }
634
635 os << std::flush;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700636 return success;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700637 }
638
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800639 bool ExportDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
640 std::string error_msg;
641 std::string dex_file_location = oat_dex_file.GetDexFileLocation();
642
643 std::unique_ptr<const DexFile> dex_file(oat_dex_file.OpenDexFile(&error_msg));
644 if (dex_file == nullptr) {
645 os << "Failed to open dex file '" << dex_file_location << "': " << error_msg;
646 return false;
647 }
648 size_t fsize = oat_dex_file.FileSize();
649
650 // Some quick checks just in case
651 if (fsize == 0 || fsize < sizeof(DexFile::Header)) {
652 os << "Invalid dex file\n";
653 return false;
654 }
655
656 // Verify output directory exists
657 if (!OS::DirectoryExists(options_.export_dex_location_)) {
658 // TODO: Extend OS::DirectoryExists if symlink support is required
659 os << options_.export_dex_location_ << " output directory not found or symlink\n";
660 return false;
661 }
662
663 // Beautify path names
664 if (dex_file_location.size() > PATH_MAX || dex_file_location.size() <= 0) {
665 return false;
666 }
667
668 std::string dex_orig_name;
669 size_t dex_orig_pos = dex_file_location.rfind('/');
670 if (dex_orig_pos == std::string::npos)
671 dex_orig_name = dex_file_location;
672 else
673 dex_orig_name = dex_file_location.substr(dex_orig_pos + 1);
674
675 // A more elegant approach to efficiently name user installed apps is welcome
676 if (dex_orig_name.size() == 8 && !dex_orig_name.compare("base.apk")) {
677 dex_file_location.erase(dex_orig_pos, strlen("base.apk") + 1);
678 size_t apk_orig_pos = dex_file_location.rfind('/');
679 if (apk_orig_pos != std::string::npos) {
680 dex_orig_name = dex_file_location.substr(++apk_orig_pos);
681 }
682 }
683
684 std::string out_dex_path(options_.export_dex_location_);
685 if (out_dex_path.back() != '/') {
686 out_dex_path.append("/");
687 }
688 out_dex_path.append(dex_orig_name);
689 out_dex_path.append("_export.dex");
690 if (out_dex_path.length() > PATH_MAX) {
691 return false;
692 }
693
694 std::unique_ptr<File> file(OS::CreateEmptyFile(out_dex_path.c_str()));
695 if (file.get() == nullptr) {
696 os << "Failed to open output dex file " << out_dex_path;
697 return false;
698 }
699
700 if (!file->WriteFully(dex_file->Begin(), fsize)) {
701 os << "Failed to write dex file";
702 file->Erase();
703 return false;
704 }
705
706 if (file->FlushCloseOrErase() != 0) {
707 os << "Flush and close failed";
708 return false;
709 }
710
711 os << StringPrintf("Dex file exported at %s (%zd bytes)\n", out_dex_path.c_str(), fsize);
712 os << std::flush;
713
714 return true;
715 }
716
Elliott Hughese3c845c2012-02-28 17:23:01 -0800717 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700718 while (it.HasNextStaticField()) {
719 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700720 }
Ian Rogers0571d352011-11-03 19:51:38 -0700721 while (it.HasNextInstanceField()) {
722 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700723 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800724 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700725
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700726 bool DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800727 const DexFile::ClassDef& class_def, bool* stop_analysis) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700728 bool success = true;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800729 bool addr_found = false;
Ian Rogers13735952014-10-08 12:43:28 -0700730 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700731 if (class_data == nullptr) { // empty class such as a marker interface?
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700732 os << std::flush;
733 return success;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800734 }
735 ClassDataItemIterator it(dex_file, class_data);
736 SkipAllFields(it);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700737 uint32_t class_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700738 while (it.HasNextDirectMethod()) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700739 if (!DumpOatMethod(os, class_def, class_method_index, oat_class, dex_file,
740 it.GetMemberIndex(), it.GetMethodCodeItem(),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800741 it.GetRawMemberAccessFlags(), &addr_found)) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700742 success = false;
743 }
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800744 if (addr_found) {
745 *stop_analysis = true;
746 return success;
747 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700748 class_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -0700749 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700750 }
Ian Rogers0571d352011-11-03 19:51:38 -0700751 while (it.HasNextVirtualMethod()) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700752 if (!DumpOatMethod(os, class_def, class_method_index, oat_class, dex_file,
753 it.GetMemberIndex(), it.GetMethodCodeItem(),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800754 it.GetRawMemberAccessFlags(), &addr_found)) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700755 success = false;
756 }
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800757 if (addr_found) {
758 *stop_analysis = true;
759 return success;
760 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700761 class_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -0700762 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700763 }
Ian Rogers0571d352011-11-03 19:51:38 -0700764 DCHECK(!it.HasNext());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700765 os << std::flush;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700766 return success;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700767 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800768
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700769 static constexpr uint32_t kPrologueBytes = 16;
770
771 // When this was picked, the largest arm method was 55,256 bytes and arm64 was 50,412 bytes.
772 static constexpr uint32_t kMaxCodeSize = 100 * 1000;
773
774 bool DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700775 uint32_t class_method_index,
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700776 const OatFile::OatClass& oat_class, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800777 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800778 uint32_t method_access_flags, bool* addr_found) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700779 bool success = true;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800780
781 // TODO: Support regex
782 std::string method_name = dex_file.GetMethodName(dex_file.GetMethodId(dex_method_idx));
783 if (method_name.find(options_.method_filter_) == std::string::npos) {
Nicolas Geoffray3fcd2202014-11-12 18:02:36 +0000784 return success;
785 }
786
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800787 std::string pretty_method = PrettyMethod(dex_method_idx, dex_file, true);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800788 os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
Nicolas Geoffray3fcd2202014-11-12 18:02:36 +0000789 class_method_index, pretty_method.c_str(),
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700790 dex_method_idx);
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800791 if (options_.list_methods_) return success;
792
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800793 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700794 std::unique_ptr<std::ostream> indent1_os(new std::ostream(&indent1_filter));
795 Indenter indent2_filter(indent1_os->rdbuf(), kIndentChar, kIndentBy1Count);
796 std::unique_ptr<std::ostream> indent2_os(new std::ostream(&indent2_filter));
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800797
798 uint32_t oat_method_offsets_offset = oat_class.GetOatMethodOffsetsOffset(class_method_index);
799 const OatMethodOffsets* oat_method_offsets = oat_class.GetOatMethodOffsets(class_method_index);
800 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index);
801 uint32_t code_offset = oat_method.GetCodeOffset();
802 uint32_t code_size = oat_method.GetQuickCodeSize();
803 if (resolved_addr2instr_ != 0) {
804 if (resolved_addr2instr_ > code_offset + code_size) {
805 return success;
806 } else {
807 *addr_found = true; // stop analyzing file at next iteration
808 }
809 }
810
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800811 {
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700812 *indent1_os << "DEX CODE:\n";
813 DumpDexCode(*indent2_os, dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700814 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700815
816 std::unique_ptr<verifier::MethodVerifier> verifier;
817 if (Runtime::Current() != nullptr) {
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700818 *indent1_os << "VERIFIER TYPE ANALYSIS:\n";
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700819 verifier.reset(DumpVerifier(*indent2_os, dex_method_idx, &dex_file, class_def, code_item,
820 method_access_flags));
Ian Rogersb23a7722012-10-09 16:54:26 -0700821 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800822 {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700823 *indent1_os << "OatMethodOffsets ";
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800824 if (options_.absolute_addresses_) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700825 *indent1_os << StringPrintf("%p ", oat_method_offsets);
Nicolas Geoffray39468442014-09-02 15:17:15 +0100826 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700827 *indent1_os << StringPrintf("(offset=0x%08x)\n", oat_method_offsets_offset);
828 if (oat_method_offsets_offset > oat_file_.Size()) {
829 *indent1_os << StringPrintf(
830 "WARNING: oat method offsets offset 0x%08x is past end of file 0x%08zx.\n",
831 oat_method_offsets_offset, oat_file_.Size());
832 // If we can't read OatMethodOffsets, the rest of the data is dangerous to read.
833 os << std::flush;
834 return false;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800835 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700836
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700837 *indent2_os << StringPrintf("code_offset: 0x%08x ", code_offset);
838 uint32_t aligned_code_begin = AlignCodeOffset(oat_method.GetCodeOffset());
839 if (aligned_code_begin > oat_file_.Size()) {
840 *indent2_os << StringPrintf("WARNING: "
841 "code offset 0x%08x is past end of file 0x%08zx.\n",
842 aligned_code_begin, oat_file_.Size());
843 success = false;
844 }
845 *indent2_os << "\n";
846
847 *indent2_os << "gc_map: ";
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800848 if (options_.absolute_addresses_) {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800849 *indent2_os << StringPrintf("%p ", oat_method.GetGcMap());
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700850 }
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800851 uint32_t gc_map_offset = oat_method.GetGcMapOffset();
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700852 *indent2_os << StringPrintf("(offset=0x%08x)\n", gc_map_offset);
853 if (gc_map_offset > oat_file_.Size()) {
854 *indent2_os << StringPrintf("WARNING: "
855 "gc map table offset 0x%08x is past end of file 0x%08zx.\n",
856 gc_map_offset, oat_file_.Size());
857 success = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800858 } else if (options_.dump_raw_gc_map_) {
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700859 Indenter indent3_filter(indent2_os->rdbuf(), kIndentChar, kIndentBy1Count);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800860 std::ostream indent3_os(&indent3_filter);
861 DumpGcMap(indent3_os, oat_method, code_item);
862 }
863 }
864 {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700865 *indent1_os << "OatQuickMethodHeader ";
866 uint32_t method_header_offset = oat_method.GetOatQuickMethodHeaderOffset();
867 const OatQuickMethodHeader* method_header = oat_method.GetOatQuickMethodHeader();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700868
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800869 if (options_.absolute_addresses_) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700870 *indent1_os << StringPrintf("%p ", method_header);
871 }
872 *indent1_os << StringPrintf("(offset=0x%08x)\n", method_header_offset);
873 if (method_header_offset > oat_file_.Size()) {
874 *indent1_os << StringPrintf(
875 "WARNING: oat quick method header offset 0x%08x is past end of file 0x%08zx.\n",
876 method_header_offset, oat_file_.Size());
877 // If we can't read the OatQuickMethodHeader, the rest of the data is dangerous to read.
878 os << std::flush;
879 return false;
880 }
881
882 *indent2_os << "mapping_table: ";
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800883 if (options_.absolute_addresses_) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700884 *indent2_os << StringPrintf("%p ", oat_method.GetMappingTable());
885 }
886 uint32_t mapping_table_offset = oat_method.GetMappingTableOffset();
887 *indent2_os << StringPrintf("(offset=0x%08x)\n", oat_method.GetMappingTableOffset());
888 if (mapping_table_offset > oat_file_.Size()) {
889 *indent2_os << StringPrintf("WARNING: "
890 "mapping table offset 0x%08x is past end of file 0x%08zx. "
891 "mapping table offset was loaded from offset 0x%08x.\n",
892 mapping_table_offset, oat_file_.Size(),
893 oat_method.GetMappingTableOffsetOffset());
894 success = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800895 } else if (options_.dump_raw_mapping_table_) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700896 Indenter indent3_filter(indent2_os->rdbuf(), kIndentChar, kIndentBy1Count);
897 std::ostream indent3_os(&indent3_filter);
898 DumpMappingTable(indent3_os, oat_method);
899 }
900
901 *indent2_os << "vmap_table: ";
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800902 if (options_.absolute_addresses_) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700903 *indent2_os << StringPrintf("%p ", oat_method.GetVmapTable());
904 }
905 uint32_t vmap_table_offset = oat_method.GetVmapTableOffset();
906 *indent2_os << StringPrintf("(offset=0x%08x)\n", vmap_table_offset);
907 if (vmap_table_offset > oat_file_.Size()) {
908 *indent2_os << StringPrintf("WARNING: "
909 "vmap table offset 0x%08x is past end of file 0x%08zx. "
910 "vmap table offset was loaded from offset 0x%08x.\n",
911 vmap_table_offset, oat_file_.Size(),
912 oat_method.GetVmapTableOffsetOffset());
913 success = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800914 } else if (options_.dump_vmap_) {
Roland Levillain442b46a2015-02-18 16:54:21 +0000915 DumpVmapData(*indent2_os, oat_method, code_item);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700916 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800917 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700918 {
919 *indent1_os << "QuickMethodFrameInfo\n";
920
921 *indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
922 *indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
923 DumpSpillMask(*indent2_os, oat_method.GetCoreSpillMask(), false);
924 *indent2_os << "\n";
925 *indent2_os << StringPrintf("fp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
926 DumpSpillMask(*indent2_os, oat_method.GetFpSpillMask(), true);
927 *indent2_os << "\n";
928 }
929 {
930 // Based on spill masks from QuickMethodFrameInfo so placed
931 // after it is dumped, but useful for understanding quick
932 // code, so dumped here.
933 DumpVregLocations(*indent2_os, oat_method, code_item);
934 }
935 {
936 *indent1_os << "CODE: ";
937 uint32_t code_size_offset = oat_method.GetQuickCodeSizeOffset();
938 if (code_size_offset > oat_file_.Size()) {
939 *indent2_os << StringPrintf("WARNING: "
940 "code size offset 0x%08x is past end of file 0x%08zx.",
941 code_size_offset, oat_file_.Size());
942 success = false;
943 } else {
944 const void* code = oat_method.GetQuickCode();
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700945 uint32_t aligned_code_begin = AlignCodeOffset(code_offset);
946 uint64_t aligned_code_end = aligned_code_begin + code_size;
947
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800948 if (options_.absolute_addresses_) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700949 *indent1_os << StringPrintf("%p ", code);
950 }
951 *indent1_os << StringPrintf("(code_offset=0x%08x size_offset=0x%08x size=%u)%s\n",
952 code_offset,
953 code_size_offset,
954 code_size,
955 code != nullptr ? "..." : "");
956
957 if (aligned_code_begin > oat_file_.Size()) {
958 *indent2_os << StringPrintf("WARNING: "
959 "start of code at 0x%08x is past end of file 0x%08zx.",
960 aligned_code_begin, oat_file_.Size());
961 success = false;
962 } else if (aligned_code_end > oat_file_.Size()) {
963 *indent2_os << StringPrintf("WARNING: "
964 "end of code at 0x%08" PRIx64 " is past end of file 0x%08zx. "
965 "code size is 0x%08x loaded from offset 0x%08x.\n",
966 aligned_code_end, oat_file_.Size(),
967 code_size, code_size_offset);
968 success = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800969 if (options_.disassemble_code_) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700970 if (code_size_offset + kPrologueBytes <= oat_file_.Size()) {
971 DumpCode(*indent2_os, verifier.get(), oat_method, code_item, true, kPrologueBytes);
972 }
973 }
974 } else if (code_size > kMaxCodeSize) {
975 *indent2_os << StringPrintf("WARNING: "
976 "code size %d is bigger than max expected threshold of %d. "
977 "code size is 0x%08x loaded from offset 0x%08x.\n",
978 code_size, kMaxCodeSize,
979 code_size, code_size_offset);
980 success = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800981 if (options_.disassemble_code_) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700982 if (code_size_offset + kPrologueBytes <= oat_file_.Size()) {
983 DumpCode(*indent2_os, verifier.get(), oat_method, code_item, true, kPrologueBytes);
984 }
985 }
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800986 } else if (options_.disassemble_code_) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700987 DumpCode(*indent2_os, verifier.get(), oat_method, code_item, !success, 0);
988 }
989 }
990 }
991 os << std::flush;
992 return success;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700993 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800994
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800995 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
996 if (spill_mask == 0) {
997 return;
998 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800999 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001000 for (size_t i = 0; i < 32; i++) {
1001 if ((spill_mask & (1 << i)) != 0) {
1002 if (is_float) {
1003 os << "fr" << i;
1004 } else {
1005 os << "r" << i;
1006 }
1007 spill_mask ^= 1 << i; // clear bit
1008 if (spill_mask != 0) {
1009 os << ", ";
1010 } else {
1011 break;
1012 }
1013 }
1014 }
1015 os << ")";
1016 }
1017
Roland Levillain442b46a2015-02-18 16:54:21 +00001018 // Display data stored at the the vmap offset of an oat method.
1019 void DumpVmapData(std::ostream& os,
1020 const OatFile::OatMethod& oat_method,
1021 const DexFile::CodeItem* code_item) {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -08001022 if (oat_method.GetGcMap() == nullptr) {
Roland Levillain442b46a2015-02-18 16:54:21 +00001023 // If the native GC map is null, then this method has been
1024 // compiled with the optimizing compiler. The optimizing
1025 // compiler currently outputs its stack maps in the vmap table.
1026 const void* raw_code_info = oat_method.GetVmapTable();
1027 if (raw_code_info != nullptr) {
1028 CodeInfo code_info(raw_code_info);
1029 DCHECK(code_item != nullptr);
1030 DumpCodeInfo(os, code_info, *code_item);
1031 }
1032 } else {
1033 // Otherwise, display the vmap table.
1034 const uint8_t* raw_table = oat_method.GetVmapTable();
1035 if (raw_table != nullptr) {
1036 VmapTable vmap_table(raw_table);
1037 DumpVmapTable(os, oat_method, vmap_table);
1038 }
Nicolas Geoffray20d3eae2014-09-17 11:27:23 +01001039 }
Roland Levillain442b46a2015-02-18 16:54:21 +00001040 }
1041
1042 // Display a CodeInfo object emitted by the optimizing compiler.
1043 void DumpCodeInfo(std::ostream& os,
1044 const CodeInfo& code_info,
1045 const DexFile::CodeItem& code_item) {
Nicolas Geoffray004c2302015-03-20 10:06:38 +00001046 code_info.Dump(os, code_item.registers_size_);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001047 }
1048
Roland Levillain442b46a2015-02-18 16:54:21 +00001049 // Display a vmap table.
1050 void DumpVmapTable(std::ostream& os,
1051 const OatFile::OatMethod& oat_method,
1052 const VmapTable& vmap_table) {
1053 bool first = true;
1054 bool processing_fp = false;
1055 uint32_t spill_mask = oat_method.GetCoreSpillMask();
1056 for (size_t i = 0; i < vmap_table.Size(); i++) {
1057 uint16_t dex_reg = vmap_table[i];
1058 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
1059 processing_fp ? kFloatVReg : kIntVReg);
1060 os << (first ? "v" : ", v") << dex_reg;
1061 if (!processing_fp) {
1062 os << "/r" << cpu_reg;
1063 } else {
1064 os << "/fr" << cpu_reg;
1065 }
1066 first = false;
1067 if (!processing_fp && dex_reg == 0xFFFF) {
1068 processing_fp = true;
1069 spill_mask = oat_method.GetFpSpillMask();
1070 }
1071 }
1072 os << "\n";
1073 }
1074
Razvan A Lupusorufaf9f0d2014-08-29 17:56:46 -07001075 void DumpVregLocations(std::ostream& os, const OatFile::OatMethod& oat_method,
1076 const DexFile::CodeItem* code_item) {
1077 if (code_item != nullptr) {
1078 size_t num_locals_ins = code_item->registers_size_;
1079 size_t num_ins = code_item->ins_size_;
1080 size_t num_locals = num_locals_ins - num_ins;
1081 size_t num_outs = code_item->outs_size_;
1082
1083 os << "vr_stack_locations:";
1084 for (size_t reg = 0; reg <= num_locals_ins; reg++) {
1085 // For readability, delimit the different kinds of VRs.
1086 if (reg == num_locals_ins) {
1087 os << "\n\tmethod*:";
1088 } else if (reg == num_locals && num_ins > 0) {
1089 os << "\n\tins:";
1090 } else if (reg == 0 && num_locals > 0) {
1091 os << "\n\tlocals:";
1092 }
1093
Nicolas Geoffray15b9d522015-03-12 15:05:13 +00001094 uint32_t offset = StackVisitor::GetVRegOffsetFromQuickCode(
1095 code_item,
1096 oat_method.GetCoreSpillMask(),
1097 oat_method.GetFpSpillMask(),
1098 oat_method.GetFrameSizeInBytes(),
1099 reg,
1100 GetInstructionSet());
Razvan A Lupusorufaf9f0d2014-08-29 17:56:46 -07001101 os << " v" << reg << "[sp + #" << offset << "]";
1102 }
1103
1104 for (size_t out_reg = 0; out_reg < num_outs; out_reg++) {
1105 if (out_reg == 0) {
1106 os << "\n\touts:";
1107 }
1108
1109 uint32_t offset = StackVisitor::GetOutVROffset(out_reg, GetInstructionSet());
1110 os << " v" << out_reg << "[sp + #" << offset << "]";
1111 }
1112
1113 os << "\n";
1114 }
1115 }
1116
Ian Rogersb23a7722012-10-09 16:54:26 -07001117 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001118 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogers1809a722013-08-09 22:05:32 -07001119 const uint8_t* raw_table = oat_method.GetVmapTable();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001120 if (raw_table != nullptr) {
Ian Rogersb23a7722012-10-09 16:54:26 -07001121 const VmapTable vmap_table(raw_table);
1122 uint32_t vmap_offset;
Ian Rogers1809a722013-08-09 22:05:32 -07001123 if (vmap_table.IsInContext(reg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001124 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
1125 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
1126 : oat_method.GetCoreSpillMask();
1127 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -07001128 } else {
Nicolas Geoffray15b9d522015-03-12 15:05:13 +00001129 uint32_t offset = StackVisitor::GetVRegOffsetFromQuickCode(
1130 code_item,
1131 oat_method.GetCoreSpillMask(),
1132 oat_method.GetFpSpillMask(),
1133 oat_method.GetFrameSizeInBytes(),
1134 reg,
1135 GetInstructionSet());
Ian Rogersb23a7722012-10-09 16:54:26 -07001136 os << "[sp + #" << offset << "]";
1137 }
1138 }
1139 }
1140
Ian Rogersef7d42f2014-01-06 12:55:46 -08001141 void DumpGcMapRegisters(std::ostream& os, const OatFile::OatMethod& oat_method,
1142 const DexFile::CodeItem* code_item,
1143 size_t num_regs, const uint8_t* reg_bitmap) {
1144 bool first = true;
1145 for (size_t reg = 0; reg < num_regs; reg++) {
1146 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
1147 if (first) {
1148 os << " v" << reg << " (";
1149 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
1150 os << ")";
1151 first = false;
1152 } else {
1153 os << ", v" << reg << " (";
1154 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
1155 os << ")";
1156 }
1157 }
1158 }
1159 if (first) {
1160 os << "No registers in GC map\n";
1161 } else {
1162 os << "\n";
1163 }
1164 }
Ian Rogersb23a7722012-10-09 16:54:26 -07001165 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
1166 const DexFile::CodeItem* code_item) {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -08001167 const uint8_t* gc_map_raw = oat_method.GetGcMap();
Ian Rogersef7d42f2014-01-06 12:55:46 -08001168 if (gc_map_raw == nullptr) {
1169 return; // No GC map.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001170 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001171 const void* quick_code = oat_method.GetQuickCode();
Elliott Hughes956af0f2014-12-11 14:34:28 -08001172 NativePcOffsetToReferenceMap map(gc_map_raw);
1173 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
1174 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(quick_code) +
1175 map.GetNativePcOffset(entry);
1176 os << StringPrintf("%p", native_pc);
1177 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001178 }
1179 }
1180
1181 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001182 const void* quick_code = oat_method.GetQuickCode();
1183 if (quick_code == nullptr) {
Elliott Hughese3c845c2012-02-28 17:23:01 -08001184 return;
1185 }
Ian Rogers1809a722013-08-09 22:05:32 -07001186 MappingTable table(oat_method.GetMappingTable());
1187 if (table.TotalSize() != 0) {
1188 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1189 std::ostream indent_os(&indent_filter);
1190 if (table.PcToDexSize() != 0) {
1191 typedef MappingTable::PcToDexIterator It;
1192 os << "suspend point mappings {\n";
1193 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
1194 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
1195 }
1196 os << "}\n";
1197 }
1198 if (table.DexToPcSize() != 0) {
1199 typedef MappingTable::DexToPcIterator It;
1200 os << "catch entry mappings {\n";
1201 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
1202 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
1203 }
1204 os << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001205 }
1206 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001207 }
1208
Ian Rogers1809a722013-08-09 22:05:32 -07001209 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
1210 size_t offset, bool suspend_point_mapping) {
1211 MappingTable table(oat_method.GetMappingTable());
1212 if (suspend_point_mapping && table.PcToDexSize() > 0) {
1213 typedef MappingTable::PcToDexIterator It;
1214 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
1215 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001216 os << StringPrintf("suspend point dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -07001217 return cur.DexPc();
1218 }
Elliott Hughese3c845c2012-02-28 17:23:01 -08001219 }
Ian Rogers1809a722013-08-09 22:05:32 -07001220 } else if (!suspend_point_mapping && table.DexToPcSize() > 0) {
1221 typedef MappingTable::DexToPcIterator It;
1222 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
1223 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001224 os << StringPrintf("catch entry dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -07001225 return cur.DexPc();
Ian Rogersb23a7722012-10-09 16:54:26 -07001226 }
1227 }
Elliott Hughese3c845c2012-02-28 17:23:01 -08001228 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001229 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -07001230 }
1231
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001232 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
1233 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -08001234 const uint8_t* gc_map_raw = oat_method.GetGcMap();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001235 if (gc_map_raw != nullptr) {
Ian Rogersb23a7722012-10-09 16:54:26 -07001236 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001237 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -07001238 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001239 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -07001240 bool first = true;
1241 for (size_t reg = 0; reg < num_regs; reg++) {
1242 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
1243 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001244 os << "GC map objects: v" << reg << " (";
1245 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -07001246 os << ")";
1247 first = false;
1248 } else {
1249 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001250 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -07001251 os << ")";
1252 }
1253 }
1254 }
1255 if (!first) {
1256 os << "\n";
1257 }
1258 }
1259 }
1260 }
1261
Mathieu Chartier590fee92013-09-13 13:46:47 -07001262 void DumpVRegsAtDexPc(std::ostream& os, verifier::MethodVerifier* verifier,
1263 const OatFile::OatMethod& oat_method,
1264 const DexFile::CodeItem* code_item, uint32_t dex_pc) {
1265 DCHECK(verifier != nullptr);
Ian Rogers7b3ddd22013-02-21 15:19:52 -08001266 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001267 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001268 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
1269 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
1270 if (kind != kUndefined) {
1271 if (first) {
1272 os << "VRegs: v";
1273 first = false;
1274 } else {
1275 os << ", v";
1276 }
1277 os << reg << " (";
1278 switch (kind) {
1279 case kImpreciseConstant:
1280 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
1281 DescribeVReg(os, oat_method, code_item, reg, kind);
1282 break;
1283 case kConstant:
1284 os << "Constant: " << kinds.at((reg * 2) + 1);
1285 break;
1286 default:
1287 DescribeVReg(os, oat_method, code_item, reg, kind);
1288 break;
1289 }
1290 os << ")";
1291 }
1292 }
1293 if (!first) {
1294 os << "\n";
1295 }
1296 }
1297
1298
Ian Rogersb23a7722012-10-09 16:54:26 -07001299 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001300 if (code_item != nullptr) {
Ian Rogersb23a7722012-10-09 16:54:26 -07001301 size_t i = 0;
1302 while (i < code_item->insns_size_in_code_units_) {
1303 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08001304 os << StringPrintf("0x%04zx: ", i) << instruction->DumpHexLE(5)
1305 << StringPrintf("\t| %s\n", instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -07001306 i += instruction->SizeInCodeUnits();
1307 }
1308 }
1309 }
1310
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001311 verifier::MethodVerifier* DumpVerifier(std::ostream& os, uint32_t dex_method_idx,
1312 const DexFile* dex_file,
1313 const DexFile::ClassDef& class_def,
1314 const DexFile::CodeItem* code_item,
1315 uint32_t method_access_flags) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001316 if ((method_access_flags & kAccNative) == 0) {
1317 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierbf99f772014-08-23 16:37:27 -07001318 StackHandleScope<1> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001319 Handle<mirror::DexCache> dex_cache(
1320 hs.NewHandle(Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file)));
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08001321 DCHECK(options_.class_loader_ != nullptr);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001322 return verifier::MethodVerifier::VerifyMethodAndDump(soa.Self(), os, dex_method_idx, dex_file,
1323 dex_cache,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08001324 *options_.class_loader_,
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001325 &class_def, code_item,
1326 NullHandle<mirror::ArtMethod>(),
1327 method_access_flags);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001328 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001329
1330 return nullptr;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001331 }
1332
Mathieu Chartier590fee92013-09-13 13:46:47 -07001333 void DumpCode(std::ostream& os, verifier::MethodVerifier* verifier,
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001334 const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item,
1335 bool bad_input, size_t code_size) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001336 const void* quick_code = oat_method.GetQuickCode();
1337
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001338 if (code_size == 0) {
1339 code_size = oat_method.GetQuickCodeSize();
1340 }
Elliott Hughes956af0f2014-12-11 14:34:28 -08001341 if (code_size == 0 || quick_code == nullptr) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001342 os << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -07001343 return;
Elliott Hughes956af0f2014-12-11 14:34:28 -08001344 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001345 const uint8_t* quick_native_pc = reinterpret_cast<const uint8_t*>(quick_code);
1346 size_t offset = 0;
1347 while (offset < code_size) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001348 if (!bad_input) {
1349 DumpMappingAtOffset(os, oat_method, offset, false);
1350 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001351 offset += disassembler_->Dump(os, quick_native_pc + offset);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001352 if (!bad_input) {
1353 uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
1354 if (dex_pc != DexFile::kDexNoIndex) {
1355 DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
1356 if (verifier != nullptr) {
1357 DumpVRegsAtDexPc(os, verifier, oat_method, code_item, dex_pc);
1358 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001359 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001360 }
1361 }
Ian Rogersb23a7722012-10-09 16:54:26 -07001362 }
1363 }
1364
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001365 const OatFile& oat_file_;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001366 const std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08001367 const OatDumperOptions& options_;
1368 uint32_t resolved_addr2instr_;
Mathieu Chartiera7dd0382014-11-20 17:08:58 -08001369 InstructionSet instruction_set_;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001370 std::set<uintptr_t> offsets_;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001371 Disassembler* disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001372};
1373
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001374class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001375 public:
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001376 explicit ImageDumper(std::ostream* os, gc::space::ImageSpace& image_space,
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001377 const ImageHeader& image_header, OatDumperOptions* oat_dumper_options)
1378 : os_(os),
1379 image_space_(image_space),
1380 image_header_(image_header),
1381 oat_dumper_options_(oat_dumper_options) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001382
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001383 bool Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001384 std::ostream& os = *os_;
1385 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -07001386
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001387 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001388
Mathieu Chartier31e89252013-08-28 11:29:12 -07001389 os << "IMAGE BITMAP OFFSET: " << reinterpret_cast<void*>(image_header_.GetImageBitmapOffset())
1390 << " SIZE: " << reinterpret_cast<void*>(image_header_.GetImageBitmapSize()) << "\n\n";
1391
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001392 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001393
Brian Carlstrom700c8d32012-11-05 10:42:02 -08001394 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001395
Brian Carlstrom700c8d32012-11-05 10:42:02 -08001396 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
1397
1398 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
1399
1400 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001401
Alex Lighta59dd802014-07-02 16:28:08 -07001402 os << "PATCH DELTA:" << image_header_.GetPatchDelta() << "\n\n";
1403
Igor Murashkin46774762014-10-22 11:37:02 -07001404 os << "COMPILE PIC: " << (image_header_.CompilePic() ? "yes" : "no") << "\n\n";
1405
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001406 {
1407 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
1408 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1409 std::ostream indent1_os(&indent1_filter);
1410 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
1411 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
1412 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
1413 const char* image_root_description = image_roots_descriptions_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001414 mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001415 indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
1416 if (image_root_object->IsObjectArray()) {
1417 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
1418 std::ostream indent2_os(&indent2_filter);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001419 mirror::ObjectArray<mirror::Object>* image_root_object_array
Ian Rogersfa824272013-11-05 16:12:57 -08001420 = image_root_object->AsObjectArray<mirror::Object>();
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001421 for (int j = 0; j < image_root_object_array->GetLength(); j++) {
1422 mirror::Object* value = image_root_object_array->Get(j);
Ian Rogersfa824272013-11-05 16:12:57 -08001423 size_t run = 0;
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001424 for (int32_t k = j + 1; k < image_root_object_array->GetLength(); k++) {
1425 if (value == image_root_object_array->Get(k)) {
Ian Rogersfa824272013-11-05 16:12:57 -08001426 run++;
1427 } else {
1428 break;
1429 }
1430 }
1431 if (run == 0) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001432 indent2_os << StringPrintf("%d: ", j);
Ian Rogersfa824272013-11-05 16:12:57 -08001433 } else {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001434 indent2_os << StringPrintf("%d to %zd: ", j, j + run);
1435 j = j + run;
Ian Rogersfa824272013-11-05 16:12:57 -08001436 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001437 if (value != nullptr) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001438 PrettyObjectValue(indent2_os, value->GetClass(), value);
1439 } else {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001440 indent2_os << j << ": null\n";
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001441 }
Ian Rogersd5b32602012-02-26 16:40:04 -08001442 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -07001443 }
1444 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001445 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001446 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001447
Brian Carlstromaded5f72011-10-07 17:15:04 -07001448 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001449 std::string image_filename = image_space_.GetImageFilename();
1450 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_filename);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001451 os << "OAT LOCATION: " << oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001452 os << "\n";
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001453 std::string error_msg;
Alex Lighta59dd802014-07-02 16:28:08 -07001454 const OatFile* oat_file = class_linker->FindOpenedOatFileFromOatLocation(oat_location);
1455 if (oat_file == nullptr) {
Richard Uhlere5fed032015-03-18 08:21:11 -07001456 oat_file = OatFile::Open(oat_location, oat_location,
1457 nullptr, nullptr, false, nullptr,
1458 &error_msg);
Alex Lighta59dd802014-07-02 16:28:08 -07001459 if (oat_file == nullptr) {
1460 os << "NOT FOUND: " << error_msg << "\n";
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001461 return false;
Alex Lighta59dd802014-07-02 16:28:08 -07001462 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001463 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001464 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001465
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001466 stats_.oat_file_bytes = oat_file->Size();
1467
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08001468 oat_dumper_.reset(new OatDumper(*oat_file, *oat_dumper_options_));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001469
Mathieu Chartier02e25112013-08-14 16:14:24 -07001470 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001471 CHECK(oat_dex_file != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001472 stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(),
1473 oat_dex_file->FileSize()));
Ian Rogers05f28c62012-10-23 18:12:13 -07001474 }
1475
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001476 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001477
1478 // Loop through all the image spaces and dump their objects.
Ian Rogers1d54e732013-05-02 21:10:01 -07001479 gc::Heap* heap = Runtime::Current()->GetHeap();
1480 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -07001481 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001482 {
Mathieu Chartierc22c59e2014-02-24 15:16:06 -08001483 {
1484 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
1485 heap->FlushAllocStack();
1486 }
Hiroshi Yamauchi90d70682014-02-20 16:17:30 -08001487 // Since FlushAllocStack() above resets the (active) allocation
1488 // stack. Need to revoke the thread-local allocation stacks that
1489 // point into it.
Mathieu Chartierc22c59e2014-02-24 15:16:06 -08001490 {
1491 self->TransitionFromRunnableToSuspended(kNative);
1492 ThreadList* thread_list = Runtime::Current()->GetThreadList();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07001493 thread_list->SuspendAll(__FUNCTION__);
Mathieu Chartierc22c59e2014-02-24 15:16:06 -08001494 heap->RevokeAllThreadLocalAllocationStacks(self);
1495 thread_list->ResumeAll();
1496 self->TransitionFromSuspendedToRunnable();
1497 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001498 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001499 {
1500 std::ostream* saved_os = os_;
1501 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1502 std::ostream indent_os(&indent_filter);
1503 os_ = &indent_os;
1504 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001505 for (const auto& space : spaces) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001506 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001507 gc::space::ImageSpace* image_space = space->AsImageSpace();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001508 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
1509 indent_os << "\n";
1510 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001511 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001512 // Dump the large objects separately.
Mathieu Chartierbbd695c2014-04-16 09:48:48 -07001513 heap->GetLargeObjectsSpace()->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001514 indent_os << "\n";
1515 os_ = saved_os;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001516 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001517 os << "STATS:\n" << std::flush;
Ian Rogers700a4022014-05-19 16:49:03 -07001518 std::unique_ptr<File> file(OS::OpenFileForReading(image_filename.c_str()));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001519 if (file.get() == nullptr) {
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001520 LOG(WARNING) << "Failed to find image in " << image_filename;
Brian Carlstrom6f277752013-09-30 17:56:45 -07001521 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001522 if (file.get() != nullptr) {
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001523 stats_.file_bytes = file->GetLength();
Brian Carlstrom6f277752013-09-30 17:56:45 -07001524 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001525 size_t header_bytes = sizeof(ImageHeader);
1526 stats_.header_bytes = header_bytes;
1527 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
1528 stats_.alignment_bytes += alignment_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -07001529 stats_.alignment_bytes += image_header_.GetImageBitmapOffset() - image_header_.GetImageSize();
1530 stats_.bitmap_bytes += image_header_.GetImageBitmapSize();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001531 stats_.Dump(os);
1532 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001533
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001534 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001535
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001536 return oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001537 }
1538
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001539 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001540 static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001541 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001542 CHECK(type != nullptr);
1543 if (value == nullptr) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001544 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001545 } else if (type->IsStringClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001546 mirror::String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001547 os << StringPrintf("%p String: %s\n", string,
Ian Rogers68b56852014-08-29 20:19:11 -07001548 PrintableString(string->ToModifiedUtf8().c_str()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -07001549 } else if (type->IsClassClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001550 mirror::Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001551 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -07001552 } else if (type->IsArtFieldClass()) {
1553 mirror::ArtField* field = value->AsArtField();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001554 os << StringPrintf("%p Field: %s\n", field, PrettyField(field).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -07001555 } else if (type->IsArtMethodClass()) {
1556 mirror::ArtMethod* method = value->AsArtMethod();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001557 os << StringPrintf("%p Method: %s\n", method, PrettyMethod(method).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001558 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001559 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001560 }
1561 }
1562
Brian Carlstromea46f952013-07-30 01:26:50 -07001563 static void PrintField(std::ostream& os, mirror::ArtField* field, mirror::Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001564 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001565 os << StringPrintf("%s: ", field->GetName());
Ian Rogers08f1f502014-12-02 15:04:37 -08001566 switch (field->GetTypeAsPrimitiveType()) {
1567 case Primitive::kPrimLong:
Ian Rogersef7d42f2014-01-06 12:55:46 -08001568 os << StringPrintf("%" PRId64 " (0x%" PRIx64 ")\n", field->Get64(obj), field->Get64(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001569 break;
1570 case Primitive::kPrimDouble:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001571 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001572 break;
1573 case Primitive::kPrimFloat:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001574 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001575 break;
1576 case Primitive::kPrimInt:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001577 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001578 break;
1579 case Primitive::kPrimChar:
Fred Shih37f05ef2014-07-16 18:38:08 -07001580 os << StringPrintf("%u (0x%x)\n", field->GetChar(obj), field->GetChar(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001581 break;
1582 case Primitive::kPrimShort:
Fred Shih37f05ef2014-07-16 18:38:08 -07001583 os << StringPrintf("%d (0x%x)\n", field->GetShort(obj), field->GetShort(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001584 break;
1585 case Primitive::kPrimBoolean:
Fred Shih37f05ef2014-07-16 18:38:08 -07001586 os << StringPrintf("%s (0x%x)\n", field->GetBoolean(obj)? "true" : "false",
1587 field->GetBoolean(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001588 break;
1589 case Primitive::kPrimByte:
Fred Shih37f05ef2014-07-16 18:38:08 -07001590 os << StringPrintf("%d (0x%x)\n", field->GetByte(obj), field->GetByte(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001591 break;
1592 case Primitive::kPrimNot: {
1593 // Get the value, don't compute the type unless it is non-null as we don't want
1594 // to cause class loading.
1595 mirror::Object* value = field->GetObj(obj);
1596 if (value == nullptr) {
1597 os << StringPrintf("null %s\n", PrettyDescriptor(field->GetTypeDescriptor()).c_str());
Ian Rogers50239c72013-06-17 14:53:22 -07001598 } else {
Ian Rogers08f1f502014-12-02 15:04:37 -08001599 // Grab the field type without causing resolution.
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07001600 mirror::Class* field_type = field->GetType<false>();
Ian Rogers08f1f502014-12-02 15:04:37 -08001601 if (field_type != nullptr) {
1602 PrettyObjectValue(os, field_type, value);
1603 } else {
1604 os << StringPrintf("%p %s\n", value,
1605 PrettyDescriptor(field->GetTypeDescriptor()).c_str());
1606 }
Ian Rogers50239c72013-06-17 14:53:22 -07001607 }
Ian Rogers08f1f502014-12-02 15:04:37 -08001608 break;
Ian Rogers48efc2b2012-08-27 17:20:31 -07001609 }
Ian Rogers08f1f502014-12-02 15:04:37 -08001610 default:
1611 os << "unexpected field type: " << field->GetTypeDescriptor() << "\n";
1612 break;
Ian Rogersd5b32602012-02-26 16:40:04 -08001613 }
1614 }
1615
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001616 static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001617 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001618 mirror::Class* super = klass->GetSuperClass();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001619 if (super != nullptr) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001620 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -08001621 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001622 mirror::ObjectArray<mirror::ArtField>* fields = klass->GetIFields();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001623 if (fields != nullptr) {
Ian Rogersd5b32602012-02-26 16:40:04 -08001624 for (int32_t i = 0; i < fields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001625 mirror::ArtField* field = fields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001626 PrintField(os, field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -08001627 }
1628 }
1629 }
1630
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001631 bool InDumpSpace(const mirror::Object* object) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001632 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001633 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001634
Ian Rogersef7d42f2014-01-06 12:55:46 -08001635 const void* GetQuickOatCodeBegin(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001636 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartiera7dd0382014-11-20 17:08:58 -08001637 const void* quick_code = m->GetEntryPointFromQuickCompiledCodePtrSize(
1638 InstructionSetPointerSize(oat_dumper_->GetOatInstructionSet()));
Ian Rogers6f3dbba2014-10-14 17:41:57 -07001639 if (Runtime::Current()->GetClassLinker()->IsQuickResolutionStub(quick_code)) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001640 quick_code = oat_dumper_->GetQuickOatCode(m);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001641 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001642 if (oat_dumper_->GetInstructionSet() == kThumb2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001643 quick_code = reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(quick_code) & ~0x1);
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001644 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001645 return quick_code;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001646 }
1647
Ian Rogersef7d42f2014-01-06 12:55:46 -08001648 uint32_t GetQuickOatCodeSize(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001649 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001650 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetQuickOatCodeBegin(m));
1651 if (oat_code_begin == nullptr) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001652 return 0;
1653 }
1654 return oat_code_begin[-1];
1655 }
1656
Ian Rogersef7d42f2014-01-06 12:55:46 -08001657 const void* GetQuickOatCodeEnd(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001658 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001659 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetQuickOatCodeBegin(m));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001660 if (oat_code_begin == nullptr) {
1661 return nullptr;
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001662 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001663 return oat_code_begin + GetQuickOatCodeSize(m);
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001664 }
1665
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001666 static void Callback(mirror::Object* obj, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001667 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001668 DCHECK(obj != nullptr);
1669 DCHECK(arg != nullptr);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001670 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001671 if (!state->InDumpSpace(obj)) {
1672 return;
1673 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001674
1675 size_t object_bytes = obj->SizeOf();
1676 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
1677 state->stats_.object_bytes += object_bytes;
1678 state->stats_.alignment_bytes += alignment_bytes;
1679
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001680 std::ostream& os = *state->os_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001681 mirror::Class* obj_class = obj->GetClass();
Ian Rogersd5b32602012-02-26 16:40:04 -08001682 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001683 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
1684 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -08001685 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001686 mirror::Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001687 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
1688 << klass->GetStatus() << ")\n";
Brian Carlstromea46f952013-07-30 01:26:50 -07001689 } else if (obj->IsArtField()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001690 os << StringPrintf("%p: java.lang.reflect.ArtField %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -07001691 PrettyField(obj->AsArtField()).c_str());
1692 } else if (obj->IsArtMethod()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001693 os << StringPrintf("%p: java.lang.reflect.ArtMethod %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -07001694 PrettyMethod(obj->AsArtMethod()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001695 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001696 os << StringPrintf("%p: java.lang.String %s\n", obj,
Ian Rogers68b56852014-08-29 20:19:11 -07001697 PrintableString(obj->AsString()->ToModifiedUtf8().c_str()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001698 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001699 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001700 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001701 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1702 std::ostream indent_os(&indent_filter);
1703 DumpFields(indent_os, obj, obj_class);
Ian Rogersd5b32602012-02-26 16:40:04 -08001704 if (obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001705 mirror::ObjectArray<mirror::Object>* obj_array = obj->AsObjectArray<mirror::Object>();
Ian Rogersd5b32602012-02-26 16:40:04 -08001706 int32_t length = obj_array->GetLength();
1707 for (int32_t i = 0; i < length; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001708 mirror::Object* value = obj_array->Get(i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001709 size_t run = 0;
1710 for (int32_t j = i + 1; j < length; j++) {
1711 if (value == obj_array->Get(j)) {
1712 run++;
1713 } else {
1714 break;
1715 }
1716 }
1717 if (run == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001718 indent_os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001719 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001720 indent_os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -08001721 i = i + run;
1722 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001723 mirror::Class* value_class =
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001724 (value == nullptr) ? obj_class->GetComponentType() : value->GetClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001725 PrettyObjectValue(indent_os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -08001726 }
1727 } else if (obj->IsClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001728 mirror::ObjectArray<mirror::ArtField>* sfields = obj->AsClass()->GetSFields();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001729 if (sfields != nullptr) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001730 indent_os << "STATICS:\n";
1731 Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
1732 std::ostream indent2_os(&indent2_filter);
Ian Rogersd5b32602012-02-26 16:40:04 -08001733 for (int32_t i = 0; i < sfields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001734 mirror::ArtField* field = sfields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001735 PrintField(indent2_os, field, field->GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -08001736 }
1737 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001738 } else if (obj->IsArtMethod()) {
Mathieu Chartiera7dd0382014-11-20 17:08:58 -08001739 const size_t image_pointer_size = InstructionSetPointerSize(
1740 state->oat_dumper_->GetOatInstructionSet());
Brian Carlstromea46f952013-07-30 01:26:50 -07001741 mirror::ArtMethod* method = obj->AsArtMethod();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001742 if (method->IsNative()) {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -08001743 DCHECK(method->GetNativeGcMap(image_pointer_size) == nullptr) << PrettyMethod(method);
Mathieu Chartiera7dd0382014-11-20 17:08:58 -08001744 DCHECK(method->GetMappingTable(image_pointer_size) == nullptr) << PrettyMethod(method);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001745 bool first_occurrence;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001746 const void* quick_oat_code = state->GetQuickOatCodeBegin(method);
1747 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1748 state->ComputeOatSize(quick_oat_code, &first_occurrence);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001749 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001750 state->stats_.native_to_managed_code_bytes += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001751 }
Mathieu Chartiera7dd0382014-11-20 17:08:58 -08001752 if (quick_oat_code != method->GetEntryPointFromQuickCompiledCodePtrSize(
1753 image_pointer_size)) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001754 indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001755 }
Ian Rogers19846512012-02-24 11:42:47 -08001756 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
Jeff Hao88474b42013-10-23 16:24:40 -07001757 method->IsResolutionMethod() || method->IsImtConflictMethod() ||
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07001758 method->IsImtUnimplementedMethod() || method->IsClassInitializer()) {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -08001759 DCHECK(method->GetNativeGcMap(image_pointer_size) == nullptr) << PrettyMethod(method);
Mathieu Chartiera7dd0382014-11-20 17:08:58 -08001760 DCHECK(method->GetMappingTable(image_pointer_size) == nullptr) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001761 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001762 const DexFile::CodeItem* code_item = method->GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -07001763 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001764 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001765
Elliott Hughesa0e18062012-04-13 15:59:59 -07001766 bool first_occurrence;
Mathieu Chartier957ca1c2014-11-21 16:51:29 -08001767 size_t gc_map_bytes =
1768 state->ComputeOatSize(method->GetNativeGcMap(image_pointer_size), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001769 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001770 state->stats_.gc_map_bytes += gc_map_bytes;
1771 }
1772
1773 size_t pc_mapping_table_bytes =
Mathieu Chartiera7dd0382014-11-20 17:08:58 -08001774 state->ComputeOatSize(method->GetMappingTable(image_pointer_size), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001775 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001776 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1777 }
1778
1779 size_t vmap_table_bytes =
Mathieu Chartiera7dd0382014-11-20 17:08:58 -08001780 state->ComputeOatSize(method->GetVmapTable(image_pointer_size), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001781 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001782 state->stats_.vmap_table_bytes += vmap_table_bytes;
1783 }
1784
Ian Rogersef7d42f2014-01-06 12:55:46 -08001785 const void* quick_oat_code_begin = state->GetQuickOatCodeBegin(method);
1786 const void* quick_oat_code_end = state->GetQuickOatCodeEnd(method);
1787 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1788 state->ComputeOatSize(quick_oat_code_begin, &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001789 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001790 state->stats_.managed_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001791 if (method->IsConstructor()) {
1792 if (method->IsStatic()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001793 state->stats_.class_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001794 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001795 state->stats_.large_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001796 }
1797 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001798 state->stats_.large_method_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001799 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001800 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001801 state->stats_.managed_code_bytes_ignoring_deduplication += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001802
Ian Rogersef7d42f2014-01-06 12:55:46 -08001803 indent_os << StringPrintf("OAT CODE: %p-%p\n", quick_oat_code_begin, quick_oat_code_end);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001804 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1805 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001806
1807 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Ian Rogersef7d42f2014-01-06 12:55:46 -08001808 vmap_table_bytes + quick_oat_code_size + object_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001809
1810 double expansion =
Ian Rogersef7d42f2014-01-06 12:55:46 -08001811 static_cast<double>(quick_oat_code_size) / static_cast<double>(dex_instruction_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001812 state->stats_.ComputeOutliers(total_size, expansion, method);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001813 }
1814 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001815 std::string temp;
1816 state->stats_.Update(obj_class->GetDescriptor(&temp), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001817 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001818
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001819 std::set<const void*> already_seen_;
1820 // Compute the size of the given data within the oat file and whether this is the first time
1821 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001822 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001823 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001824 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001825 already_seen_.insert(oat_data);
1826 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001827 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001828 }
1829 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001830 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001831
1832 public:
1833 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001834 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001835 size_t file_bytes;
1836
1837 size_t header_bytes;
1838 size_t object_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -07001839 size_t bitmap_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001840 size_t alignment_bytes;
1841
1842 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001843 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001844 size_t managed_to_native_code_bytes;
1845 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001846 size_t class_initializer_code_bytes;
1847 size_t large_initializer_code_bytes;
1848 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001849
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001850 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001851 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001852 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001853
1854 size_t dex_instruction_bytes;
1855
Brian Carlstromea46f952013-07-30 01:26:50 -07001856 std::vector<mirror::ArtMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001857 std::vector<size_t> method_outlier_size;
1858 std::vector<double> method_outlier_expansion;
Ian Rogers700a4022014-05-19 16:49:03 -07001859 std::vector<std::pair<std::string, size_t>> oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001860
1861 explicit Stats()
1862 : oat_file_bytes(0),
1863 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001864 header_bytes(0),
1865 object_bytes(0),
Mathieu Chartier32327092013-08-30 14:04:08 -07001866 bitmap_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001867 alignment_bytes(0),
1868 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001869 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001870 managed_to_native_code_bytes(0),
1871 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001872 class_initializer_code_bytes(0),
1873 large_initializer_code_bytes(0),
1874 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001875 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001876 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001877 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001878 dex_instruction_bytes(0) {}
1879
Elliott Hughesa0e18062012-04-13 15:59:59 -07001880 struct SizeAndCount {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001881 SizeAndCount(size_t bytes_in, size_t count_in) : bytes(bytes_in), count(count_in) {}
Elliott Hughesa0e18062012-04-13 15:59:59 -07001882 size_t bytes;
1883 size_t count;
1884 };
1885 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1886 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001887
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001888 void Update(const char* descriptor, size_t object_bytes_in) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001889 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1890 if (it != sizes_and_counts.end()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001891 it->second.bytes += object_bytes_in;
Elliott Hughesa0e18062012-04-13 15:59:59 -07001892 it->second.count += 1;
1893 } else {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001894 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes_in, 1));
Elliott Hughesa0e18062012-04-13 15:59:59 -07001895 }
1896 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001897
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001898 double PercentOfOatBytes(size_t size) {
1899 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1900 }
1901
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001902 double PercentOfFileBytes(size_t size) {
1903 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1904 }
1905
1906 double PercentOfObjectBytes(size_t size) {
1907 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1908 }
1909
Brian Carlstromea46f952013-07-30 01:26:50 -07001910 void ComputeOutliers(size_t total_size, double expansion, mirror::ArtMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001911 method_outlier_size.push_back(total_size);
1912 method_outlier_expansion.push_back(expansion);
1913 method_outlier.push_back(method);
1914 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001915
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001916 void DumpOutliers(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001917 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001918 size_t sum_of_sizes = 0;
1919 size_t sum_of_sizes_squared = 0;
1920 size_t sum_of_expansion = 0;
1921 size_t sum_of_expansion_squared = 0;
1922 size_t n = method_outlier_size.size();
1923 for (size_t i = 0; i < n; i++) {
1924 size_t cur_size = method_outlier_size[i];
1925 sum_of_sizes += cur_size;
1926 sum_of_sizes_squared += cur_size * cur_size;
1927 double cur_expansion = method_outlier_expansion[i];
1928 sum_of_expansion += cur_expansion;
1929 sum_of_expansion_squared += cur_expansion * cur_expansion;
1930 }
1931 size_t size_mean = sum_of_sizes / n;
1932 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1933 double expansion_mean = sum_of_expansion / n;
1934 double expansion_variance =
1935 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1936
1937 // Dump methods whose size is a certain number of standard deviations from the mean
1938 size_t dumped_values = 0;
1939 size_t skipped_values = 0;
1940 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
1941 size_t cur_size_variance = i * i * size_variance;
1942 bool first = true;
1943 for (size_t j = 0; j < n; j++) {
1944 size_t cur_size = method_outlier_size[j];
1945 if (cur_size > size_mean) {
1946 size_t cur_var = cur_size - size_mean;
1947 cur_var = cur_var * cur_var;
1948 if (cur_var > cur_size_variance) {
1949 if (dumped_values > 20) {
1950 if (i == 1) {
1951 skipped_values++;
1952 } else {
1953 i = 2; // jump to counting for 1 standard deviation
1954 break;
1955 }
1956 } else {
1957 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001958 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001959 first = false;
1960 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001961 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07001962 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001963 method_outlier_size[j] = 0; // don't consider this method again
1964 dumped_values++;
1965 }
1966 }
1967 }
1968 }
1969 }
1970 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001971 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001972 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001973 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001974 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001975
1976 // Dump methods whose expansion is a certain number of standard deviations from the mean
1977 dumped_values = 0;
1978 skipped_values = 0;
1979 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
1980 double cur_expansion_variance = i * i * expansion_variance;
1981 bool first = true;
1982 for (size_t j = 0; j < n; j++) {
1983 double cur_expansion = method_outlier_expansion[j];
1984 if (cur_expansion > expansion_mean) {
1985 size_t cur_var = cur_expansion - expansion_mean;
1986 cur_var = cur_var * cur_var;
1987 if (cur_var > cur_expansion_variance) {
1988 if (dumped_values > 20) {
1989 if (i == 1) {
1990 skipped_values++;
1991 } else {
1992 i = 2; // jump to counting for 1 standard deviation
1993 break;
1994 }
1995 } else {
1996 if (first) {
1997 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07001998 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001999 first = false;
2000 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002001 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07002002 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002003 method_outlier_expansion[j] = 0.0; // don't consider this method again
2004 dumped_values++;
2005 }
2006 }
2007 }
2008 }
2009 }
2010 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002011 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07002012 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002013 }
Elliott Hughesc073b072012-05-24 19:29:17 -07002014 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002015 }
2016
Ian Rogersb726dcb2012-09-05 08:57:23 -07002017 void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002018 {
2019 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
2020 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
2021 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
2022 std::ostream indent_os(&indent_filter);
2023 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
2024 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
Mathieu Chartier32327092013-08-30 14:04:08 -07002025 "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n"
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002026 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
2027 header_bytes, PercentOfFileBytes(header_bytes),
2028 object_bytes, PercentOfFileBytes(object_bytes),
Mathieu Chartier32327092013-08-30 14:04:08 -07002029 bitmap_bytes, PercentOfFileBytes(bitmap_bytes),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002030 alignment_bytes, PercentOfFileBytes(alignment_bytes))
2031 << std::flush;
Mathieu Chartier32327092013-08-30 14:04:08 -07002032 CHECK_EQ(file_bytes, bitmap_bytes + header_bytes + object_bytes + alignment_bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002033 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002034
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002035 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002036 size_t object_bytes_total = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07002037 for (const auto& sizes_and_count : sizes_and_counts) {
2038 const std::string& descriptor(sizes_and_count.first);
2039 double average = static_cast<double>(sizes_and_count.second.bytes) /
2040 static_cast<double>(sizes_and_count.second.count);
2041 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002042 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07002043 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07002044 descriptor.c_str(), sizes_and_count.second.bytes,
2045 sizes_and_count.second.count, average, percent);
2046 object_bytes_total += sizes_and_count.second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002047 }
Elliott Hughesc073b072012-05-24 19:29:17 -07002048 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002049 CHECK_EQ(object_bytes, object_bytes_total);
2050
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002051 os << StringPrintf("oat_file_bytes = %8zd\n"
2052 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
2053 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
2054 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
2055 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
2056 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
2057 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07002058 oat_file_bytes,
Brian Carlstrom2ec65202014-03-03 15:16:37 -08002059 managed_code_bytes,
2060 PercentOfOatBytes(managed_code_bytes),
2061 managed_to_native_code_bytes,
2062 PercentOfOatBytes(managed_to_native_code_bytes),
2063 native_to_managed_code_bytes,
2064 PercentOfOatBytes(native_to_managed_code_bytes),
2065 class_initializer_code_bytes,
2066 PercentOfOatBytes(class_initializer_code_bytes),
2067 large_initializer_code_bytes,
2068 PercentOfOatBytes(large_initializer_code_bytes),
2069 large_method_code_bytes,
2070 PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002071 << "DexFile sizes:\n";
Mathieu Chartier02e25112013-08-14 16:14:24 -07002072 for (const std::pair<std::string, size_t>& oat_dex_file_size : oat_dex_file_sizes) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002073 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07002074 oat_dex_file_size.first.c_str(), oat_dex_file_size.second,
2075 PercentOfOatBytes(oat_dex_file_size.second));
Ian Rogers05f28c62012-10-23 18:12:13 -07002076 }
2077
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002078 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
2079 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
2080 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07002081 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
2082 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
2083 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07002084 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002085
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002086 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
2087 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Brian Carlstrom2ec65202014-03-03 15:16:37 -08002088 static_cast<double>(managed_code_bytes) /
2089 static_cast<double>(dex_instruction_bytes),
Elliott Hughesc073b072012-05-24 19:29:17 -07002090 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07002091 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07002092 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002093
2094 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002095 }
2096 } stats_;
2097
2098 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07002099 enum {
2100 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
2101 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
2102 kLargeConstructorDexBytes = 4000,
2103 // Number of bytes for a method to be considered large. Based on the 4000 basic block
2104 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
2105 kLargeMethodDexBytes = 16000
2106 };
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002107 std::ostream* os_;
Ian Rogers1d54e732013-05-02 21:10:01 -07002108 gc::space::ImageSpace& image_space_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002109 const ImageHeader& image_header_;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07002110 std::unique_ptr<OatDumper> oat_dumper_;
2111 std::unique_ptr<OatDumperOptions> oat_dumper_options_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07002112
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002113 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07002114};
2115
Andreas Gampe00b25f32014-09-17 21:49:05 -07002116static int DumpImage(Runtime* runtime, const char* image_location, OatDumperOptions* options,
2117 std::ostream* os) {
2118 // Dumping the image, no explicit class loader.
2119 NullHandle<mirror::ClassLoader> null_class_loader;
2120 options->class_loader_ = &null_class_loader;
2121
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002122 ScopedObjectAccess soa(Thread::Current());
Andreas Gampe00b25f32014-09-17 21:49:05 -07002123 gc::Heap* heap = runtime->GetHeap();
Ian Rogers1d54e732013-05-02 21:10:01 -07002124 gc::space::ImageSpace* image_space = heap->GetImageSpace();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002125 CHECK(image_space != nullptr);
Brian Carlstrom78128a62011-09-15 17:21:19 -07002126 const ImageHeader& image_header = image_space->GetImageHeader();
2127 if (!image_header.IsValid()) {
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07002128 fprintf(stderr, "Invalid image header %s\n", image_location);
Brian Carlstrom78128a62011-09-15 17:21:19 -07002129 return EXIT_FAILURE;
2130 }
Igor Murashkin37743352014-11-13 14:38:00 -08002131
Andreas Gampe00b25f32014-09-17 21:49:05 -07002132 ImageDumper image_dumper(os, *image_space, image_header, options);
Igor Murashkin37743352014-11-13 14:38:00 -08002133
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07002134 bool success = image_dumper.Dump();
2135 return (success) ? EXIT_SUCCESS : EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07002136}
2137
Andreas Gampe00b25f32014-09-17 21:49:05 -07002138static int DumpOatWithRuntime(Runtime* runtime, OatFile* oat_file, OatDumperOptions* options,
2139 std::ostream* os) {
2140 CHECK(runtime != nullptr && oat_file != nullptr && options != nullptr);
2141
2142 Thread* self = Thread::Current();
2143 CHECK(self != nullptr);
2144 // Need well-known-classes.
2145 WellKnownClasses::Init(self->GetJniEnv());
2146
2147 // Need to register dex files to get a working dex cache.
2148 ScopedObjectAccess soa(self);
2149 ClassLinker* class_linker = runtime->GetClassLinker();
2150 class_linker->RegisterOatFile(oat_file);
Richard Uhlerfbef44d2014-12-23 09:48:51 -08002151 std::vector<std::unique_ptr<const DexFile>> dex_files;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002152 for (const OatFile::OatDexFile* odf : oat_file->GetOatDexFiles()) {
2153 std::string error_msg;
Richard Uhlerfbef44d2014-12-23 09:48:51 -08002154 std::unique_ptr<const DexFile> dex_file = odf->OpenDexFile(&error_msg);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002155 CHECK(dex_file != nullptr) << error_msg;
2156 class_linker->RegisterDexFile(*dex_file);
Richard Uhlerfbef44d2014-12-23 09:48:51 -08002157 dex_files.push_back(std::move(dex_file));
Andreas Gampe00b25f32014-09-17 21:49:05 -07002158 }
2159
2160 // Need a class loader.
Andreas Gampe00b25f32014-09-17 21:49:05 -07002161 // Fake that we're a compiler.
Richard Uhlerfbef44d2014-12-23 09:48:51 -08002162 std::vector<const DexFile*> class_path;
2163 for (auto& dex_file : dex_files) {
2164 class_path.push_back(dex_file.get());
2165 }
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07002166 jobject class_loader = class_linker->CreatePathClassLoader(self, class_path);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002167
2168 // Use the class loader while dumping.
2169 StackHandleScope<1> scope(self);
2170 Handle<mirror::ClassLoader> loader_handle = scope.NewHandle(
2171 soa.Decode<mirror::ClassLoader*>(class_loader));
2172 options->class_loader_ = &loader_handle;
2173
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002174 OatDumper oat_dumper(*oat_file, *options);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002175 bool success = oat_dumper.Dump(*os);
2176 return (success) ? EXIT_SUCCESS : EXIT_FAILURE;
2177}
2178
2179static int DumpOatWithoutRuntime(OatFile* oat_file, OatDumperOptions* options, std::ostream* os) {
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002180 CHECK(oat_file != nullptr && options != nullptr);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002181 // No image = no class loader.
2182 NullHandle<mirror::ClassLoader> null_class_loader;
2183 options->class_loader_ = &null_class_loader;
2184
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002185 OatDumper oat_dumper(*oat_file, *options);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002186 bool success = oat_dumper.Dump(*os);
2187 return (success) ? EXIT_SUCCESS : EXIT_FAILURE;
2188}
2189
2190static int DumpOat(Runtime* runtime, const char* oat_filename, OatDumperOptions* options,
2191 std::ostream* os) {
2192 std::string error_msg;
Igor Murashkin37743352014-11-13 14:38:00 -08002193 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename, nullptr, nullptr, false,
Richard Uhlere5fed032015-03-18 08:21:11 -07002194 nullptr, &error_msg);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002195 if (oat_file == nullptr) {
2196 fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str());
2197 return EXIT_FAILURE;
2198 }
2199
2200 if (runtime != nullptr) {
2201 return DumpOatWithRuntime(runtime, oat_file, options, os);
2202 } else {
2203 return DumpOatWithoutRuntime(oat_file, options, os);
2204 }
2205}
2206
2207static int SymbolizeOat(const char* oat_filename, std::string& output_name) {
2208 std::string error_msg;
Igor Murashkin37743352014-11-13 14:38:00 -08002209 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename, nullptr, nullptr, false,
Richard Uhlere5fed032015-03-18 08:21:11 -07002210 nullptr, &error_msg);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002211 if (oat_file == nullptr) {
2212 fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str());
2213 return EXIT_FAILURE;
2214 }
2215
2216 OatSymbolizer oat_symbolizer(oat_file, output_name);
2217 if (!oat_symbolizer.Init()) {
2218 fprintf(stderr, "Failed to initialize symbolizer\n");
2219 return EXIT_FAILURE;
2220 }
2221 if (!oat_symbolizer.Symbolize()) {
2222 fprintf(stderr, "Failed to symbolize\n");
2223 return EXIT_FAILURE;
2224 }
2225
2226 return EXIT_SUCCESS;
2227}
2228
Igor Murashkin37743352014-11-13 14:38:00 -08002229struct OatdumpArgs : public CmdlineArgs {
2230 protected:
2231 using Base = CmdlineArgs;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002232
Igor Murashkin37743352014-11-13 14:38:00 -08002233 virtual ParseStatus ParseCustom(const StringPiece& option,
2234 std::string* error_msg) OVERRIDE {
2235 {
2236 ParseStatus base_parse = Base::ParseCustom(option, error_msg);
2237 if (base_parse != kParseUnknownArgument) {
2238 return base_parse;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002239 }
2240 }
2241
Igor Murashkin37743352014-11-13 14:38:00 -08002242 if (option.starts_with("--oat-file=")) {
2243 oat_filename_ = option.substr(strlen("--oat-file=")).data();
2244 } else if (option.starts_with("--image=")) {
2245 image_location_ = option.substr(strlen("--image=")).data();
2246 } else if (option =="--dump:raw_mapping_table") {
2247 dump_raw_mapping_table_ = true;
2248 } else if (option == "--dump:raw_gc_map") {
2249 dump_raw_gc_map_ = true;
2250 } else if (option == "--no-dump:vmap") {
2251 dump_vmap_ = false;
2252 } else if (option == "--no-disassemble") {
2253 disassemble_code_ = false;
2254 } else if (option.starts_with("--symbolize=")) {
2255 oat_filename_ = option.substr(strlen("--symbolize=")).data();
2256 symbolize_ = true;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002257 } else if (option.starts_with("--class-filter=")) {
2258 class_filter_ = option.substr(strlen("--class-filter=")).data();
Igor Murashkin37743352014-11-13 14:38:00 -08002259 } else if (option.starts_with("--method-filter=")) {
2260 method_filter_ = option.substr(strlen("--method-filter=")).data();
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002261 } else if (option.starts_with("--list-classes")) {
2262 list_classes_ = true;
2263 } else if (option.starts_with("--list-methods")) {
2264 list_methods_ = true;
2265 } else if (option.starts_with("--export-dex-to=")) {
2266 export_dex_location_ = option.substr(strlen("--export-dex-to=")).data();
2267 } else if (option.starts_with("--addr2instr=")) {
2268 if (!ParseUint(option.substr(strlen("--addr2instr=")).data(), &addr2instr_)) {
2269 *error_msg = "Address conversion failed";
2270 return kParseError;
2271 }
Igor Murashkin37743352014-11-13 14:38:00 -08002272 } else {
2273 return kParseUnknownArgument;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002274 }
2275
Igor Murashkin37743352014-11-13 14:38:00 -08002276 return kParseOk;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002277 }
2278
Igor Murashkin37743352014-11-13 14:38:00 -08002279 virtual ParseStatus ParseChecks(std::string* error_msg) OVERRIDE {
2280 // Infer boot image location from the image location if possible.
2281 if (boot_image_location_ == nullptr) {
2282 boot_image_location_ = image_location_;
2283 }
2284
2285 // Perform the parent checks.
2286 ParseStatus parent_checks = Base::ParseChecks(error_msg);
2287 if (parent_checks != kParseOk) {
2288 return parent_checks;
2289 }
2290
2291 // Perform our own checks.
2292 if (image_location_ == nullptr && oat_filename_ == nullptr) {
2293 *error_msg = "Either --image or --oat-file must be specified";
2294 return kParseError;
2295 } else if (image_location_ != nullptr && oat_filename_ != nullptr) {
2296 *error_msg = "Either --image or --oat-file must be specified but not both";
2297 return kParseError;
2298 }
2299
2300 return kParseOk;
2301 }
2302
2303 virtual std::string GetUsage() const {
2304 std::string usage;
2305
2306 usage +=
2307 "Usage: oatdump [options] ...\n"
2308 " Example: oatdump --image=$ANDROID_PRODUCT_OUT/system/framework/boot.art\n"
2309 " Example: adb shell oatdump --image=/system/framework/boot.art\n"
2310 "\n"
2311 // Either oat-file or image is required.
2312 " --oat-file=<file.oat>: specifies an input oat filename.\n"
2313 " Example: --oat-file=/system/framework/boot.oat\n"
2314 "\n"
2315 " --image=<file.art>: specifies an input image location.\n"
2316 " Example: --image=/system/framework/boot.art\n"
2317 "\n";
2318
2319 usage += Base::GetUsage();
2320
2321 usage += // Optional.
2322 " --dump:raw_mapping_table enables dumping of the mapping table.\n"
2323 " Example: --dump:raw_mapping_table\n"
2324 "\n"
2325 " --dump:raw_mapping_table enables dumping of the GC map.\n"
2326 " Example: --dump:raw_gc_map\n"
2327 "\n"
2328 " --no-dump:vmap may be used to disable vmap dumping.\n"
2329 " Example: --no-dump:vmap\n"
2330 "\n"
2331 " --no-disassemble may be used to disable disassembly.\n"
2332 " Example: --no-disassemble\n"
2333 "\n"
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002334 " --list-classes may be used to list target file classes (can be used with filters).\n"
2335 " Example: --list-classes\n"
2336 " Example: --list-classes --class-filter=com.example.foo\n"
2337 "\n"
2338 " --list-methods may be used to list target file methods (can be used with filters).\n"
2339 " Example: --list-methods\n"
2340 " Example: --list-methods --class-filter=com.example --method-filter=foo\n"
2341 "\n"
2342 " --symbolize=<file.oat>: output a copy of file.oat with elf symbols included.\n"
2343 " Example: --symbolize=/system/framework/boot.oat\n"
2344 "\n"
2345 " --class-filter=<class name>: only dumps classes that contain the filter.\n"
2346 " Example: --class-filter=com.example.foo\n"
2347 "\n"
Igor Murashkin37743352014-11-13 14:38:00 -08002348 " --method-filter=<method name>: only dumps methods that contain the filter.\n"
2349 " Example: --method-filter=foo\n"
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002350 "\n"
2351 " --export-dex-to=<directory>: may be used to export oat embedded dex files.\n"
2352 " Example: --export-dex-to=/data/local/tmp\n"
2353 "\n"
2354 " --addr2instr=<address>: output matching method disassembled code from relative\n"
2355 " address (e.g. PC from crash dump)\n"
2356 " Example: --addr2instr=0x00001a3b\n"
Igor Murashkin37743352014-11-13 14:38:00 -08002357 "\n";
2358
2359 return usage;
2360 }
2361
2362 public:
Andreas Gampe00b25f32014-09-17 21:49:05 -07002363 const char* oat_filename_ = nullptr;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002364 const char* class_filter_ = "";
Nicolas Geoffray3fcd2202014-11-12 18:02:36 +00002365 const char* method_filter_ = "";
Andreas Gampe00b25f32014-09-17 21:49:05 -07002366 const char* image_location_ = nullptr;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002367 std::string elf_filename_prefix_;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002368 bool dump_raw_mapping_table_ = false;
2369 bool dump_raw_gc_map_ = false;
2370 bool dump_vmap_ = true;
2371 bool disassemble_code_ = true;
2372 bool symbolize_ = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002373 bool list_classes_ = false;
2374 bool list_methods_ = false;
2375 uint32_t addr2instr_ = 0;
2376 const char* export_dex_location_ = nullptr;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002377};
2378
Igor Murashkin37743352014-11-13 14:38:00 -08002379struct OatdumpMain : public CmdlineMain<OatdumpArgs> {
2380 virtual bool NeedsRuntime() OVERRIDE {
2381 CHECK(args_ != nullptr);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002382
Igor Murashkin37743352014-11-13 14:38:00 -08002383 // If we are only doing the oat file, disable absolute_addresses. Keep them for image dumping.
2384 bool absolute_addresses = (args_->oat_filename_ == nullptr);
2385
2386 oat_dumper_options_ = std::unique_ptr<OatDumperOptions>(new OatDumperOptions(
2387 args_->dump_raw_mapping_table_,
2388 args_->dump_raw_gc_map_,
2389 args_->dump_vmap_,
2390 args_->disassemble_code_,
2391 absolute_addresses,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002392 args_->class_filter_,
2393 args_->method_filter_,
2394 args_->list_classes_,
2395 args_->list_methods_,
2396 args_->export_dex_location_,
2397 args_->addr2instr_));
Igor Murashkin37743352014-11-13 14:38:00 -08002398
2399 return (args_->boot_image_location_ != nullptr || args_->image_location_ != nullptr) &&
2400 !args_->symbolize_;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002401 }
2402
Igor Murashkin37743352014-11-13 14:38:00 -08002403 virtual bool ExecuteWithoutRuntime() OVERRIDE {
2404 CHECK(args_ != nullptr);
Andreas Gampec24f3992014-12-17 20:40:11 -08002405 CHECK(args_->oat_filename_ != nullptr);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002406
Mathieu Chartierd424d082014-10-15 10:31:46 -07002407 MemMap::Init();
Igor Murashkin37743352014-11-13 14:38:00 -08002408
Andreas Gampec24f3992014-12-17 20:40:11 -08002409 if (args_->symbolize_) {
2410 return SymbolizeOat(args_->oat_filename_, args_->output_name_) == EXIT_SUCCESS;
2411 } else {
2412 return DumpOat(nullptr,
2413 args_->oat_filename_,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002414 oat_dumper_options_.get(),
Andreas Gampec24f3992014-12-17 20:40:11 -08002415 args_->os_) == EXIT_SUCCESS;
2416 }
Andreas Gampe00b25f32014-09-17 21:49:05 -07002417 }
2418
Igor Murashkin37743352014-11-13 14:38:00 -08002419 virtual bool ExecuteWithRuntime(Runtime* runtime) {
2420 CHECK(args_ != nullptr);
2421
2422 if (args_->oat_filename_ != nullptr) {
2423 return DumpOat(runtime,
2424 args_->oat_filename_,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002425 oat_dumper_options_.get(),
Igor Murashkin37743352014-11-13 14:38:00 -08002426 args_->os_) == EXIT_SUCCESS;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002427 }
Igor Murashkin37743352014-11-13 14:38:00 -08002428
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002429 return DumpImage(runtime, args_->image_location_, oat_dumper_options_.get(), args_->os_)
Igor Murashkin37743352014-11-13 14:38:00 -08002430 == EXIT_SUCCESS;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002431 }
2432
Igor Murashkin37743352014-11-13 14:38:00 -08002433 std::unique_ptr<OatDumperOptions> oat_dumper_options_;
2434};
Andreas Gampe00b25f32014-09-17 21:49:05 -07002435
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002436} // namespace art
Brian Carlstrom78128a62011-09-15 17:21:19 -07002437
2438int main(int argc, char** argv) {
Igor Murashkin37743352014-11-13 14:38:00 -08002439 art::OatdumpMain main;
2440 return main.Main(argc, argv);
Brian Carlstrom78128a62011-09-15 17:21:19 -07002441}