blob: fff42f6e73f8d53c3b5c3425796b7d8c27f4cf13 [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>
Brian Carlstrom78128a62011-09-15 17:21:19 -070022#include <string>
Andreas Gampe54fc26c2014-09-04 21:47:42 -070023#include <unordered_map>
Brian Carlstrom78128a62011-09-15 17:21:19 -070024#include <vector>
25
Elliott Hughese222ee02012-12-13 14:41:43 -080026#include "base/stringpiece.h"
Elliott Hughes76160052012-12-12 16:31:20 -080027#include "base/unix_file/fd_file.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070028#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070030#include "dex_file-inl.h"
Elliott Hughese3c845c2012-02-28 17:23:01 -080031#include "dex_instruction.h"
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080032#include "disassembler.h"
Andreas Gampe54fc26c2014-09-04 21:47:42 -070033#include "elf_builder.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070034#include "field_helper.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080035#include "gc_map.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070036#include "gc/space/image_space.h"
37#include "gc/space/large_object_space.h"
38#include "gc/space/space-inl.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070039#include "image.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080040#include "indenter.h"
Ian Rogers1809a722013-08-09 22:05:32 -070041#include "mapping_table.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070042#include "mirror/art_field-inl.h"
43#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080044#include "mirror/array-inl.h"
45#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080046#include "mirror/object-inl.h"
47#include "mirror/object_array-inl.h"
Brian Carlstromc0a1b182014-03-04 23:19:06 -080048#include "noop_compiler_callbacks.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"
Brian Carlstrom78128a62011-09-15 17:21:19 -070053#include "runtime.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070054#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070055#include "scoped_thread_state_change.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"
Brian Carlstrom78128a62011-09-15 17:21:19 -070060
61namespace art {
62
63static void usage() {
64 fprintf(stderr,
65 "Usage: oatdump [options] ...\n"
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +000066 " Example: oatdump --image=$ANDROID_PRODUCT_OUT/system/framework/boot.art\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080067 " Example: adb shell oatdump --image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070068 "\n");
69 fprintf(stderr,
Brian Carlstroma6cc8932012-01-04 14:44:07 -080070 " --oat-file=<file.oat>: specifies an input oat filename.\n"
TDYa127a0a2a6c2012-10-16 22:47:38 -070071 " Example: --oat-file=/system/framework/boot.oat\n"
Brian Carlstromaded5f72011-10-07 17:15:04 -070072 "\n");
73 fprintf(stderr,
74 " --image=<file.art>: specifies an input image filename.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080075 " Example: --image=/system/framework/boot.art\n"
Brian Carlstrome24fa612011-09-29 00:53:55 -070076 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070077 fprintf(stderr,
Brian Carlstrome24fa612011-09-29 00:53:55 -070078 " --boot-image=<file.art>: provide the image file for the boot class path.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080079 " Example: --boot-image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070080 "\n");
Brian Carlstrome24fa612011-09-29 00:53:55 -070081 fprintf(stderr,
Brian Carlstrom0f5baa02014-05-22 11:54:18 -070082 " --instruction-set=(arm|arm64|mips|x86|x86_64): for locating the image file based on the image location\n"
83 " set.\n"
84 " Example: --instruction-set=x86\n"
85 " Default: %s\n"
86 "\n",
87 GetInstructionSetString(kRuntimeISA));
88 fprintf(stderr,
Brian Carlstrom27ec9612011-09-19 20:20:38 -070089 " --output=<file> may be used to send the output to a file.\n"
90 " Example: --output=/tmp/oatdump.txt\n"
91 "\n");
Dave Allison404f59f2014-02-24 11:10:01 -080092 fprintf(stderr,
93 " --dump:[raw_mapping_table|raw_gc_map]\n"
94 " Example: --dump:raw_gc_map\n"
95 " Default: neither\n"
96 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070097 exit(EXIT_FAILURE);
98}
99
Ian Rogersff1ed472011-09-20 13:46:24 -0700100const char* image_roots_descriptions_[] = {
Ian Rogers19846512012-02-24 11:42:47 -0800101 "kResolutionMethod",
Jeff Hao88474b42013-10-23 16:24:40 -0700102 "kImtConflictMethod",
103 "kDefaultImt",
Brian Carlstrome24fa612011-09-29 00:53:55 -0700104 "kCalleeSaveMethod",
Brian Carlstromaded5f72011-10-07 17:15:04 -0700105 "kRefsOnlySaveMethod",
106 "kRefsAndArgsSaveMethod",
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700107 "kDexCaches",
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700108 "kClassRoots",
Brian Carlstrom78128a62011-09-15 17:21:19 -0700109};
110
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700111class OatSymbolizer : public CodeOutput {
112 public:
113 explicit OatSymbolizer(const OatFile* oat_file, std::string& output_name) :
114 oat_file_(oat_file), builder_(nullptr), elf_output_(nullptr), output_name_(output_name) {}
115
116 bool Init() {
117 Elf32_Word oat_data_size = oat_file_->GetOatHeader().GetExecutableOffset();
118
119 uint32_t diff = static_cast<uint32_t>(oat_file_->End() - oat_file_->Begin());
120 uint32_t oat_exec_size = diff - oat_data_size;
121
122 if (output_name_.empty()) {
123 output_name_ = "symbolized.oat";
124 }
125 elf_output_ = OS::CreateEmptyFile(output_name_.c_str());
126
127 builder_.reset(new ElfBuilder<Elf32_Word, Elf32_Sword, Elf32_Addr, Elf32_Dyn,
128 Elf32_Sym, Elf32_Ehdr, Elf32_Phdr, Elf32_Shdr>(
129 this,
130 elf_output_,
131 oat_file_->GetOatHeader().GetInstructionSet(),
132 0,
133 oat_data_size,
134 oat_data_size,
135 oat_exec_size,
136 true,
137 false));
138
139 if (!builder_->Init()) {
140 builder_.reset(nullptr);
141 return false;
142 }
143
144 return true;
145 }
146
147 typedef void (OatSymbolizer::*Callback)(const DexFile::ClassDef&,
148 uint32_t,
149 const OatFile::OatMethod&,
150 const DexFile&,
151 uint32_t,
152 const DexFile::CodeItem*,
153 uint32_t);
154
155 bool Symbolize() {
156 if (builder_.get() == nullptr) {
157 return false;
158 }
159
160 Walk(&art::OatSymbolizer::RegisterForDedup);
161
162 NormalizeState();
163
164 Walk(&art::OatSymbolizer::AddSymbol);
165
166 bool result = builder_->Write();
167
168 elf_output_->Flush();
169 elf_output_->Close();
170
171 return result;
172 }
173
174 void Walk(Callback callback) {
175 std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file_->GetOatDexFiles();
176 for (size_t i = 0; i < oat_dex_files.size(); i++) {
177 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i];
178 CHECK(oat_dex_file != NULL);
179 WalkOatDexFile(oat_dex_file, callback);
180 }
181 }
182
183 void WalkOatDexFile(const OatFile::OatDexFile* oat_dex_file, Callback callback) {
184 std::string error_msg;
185 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
186 if (dex_file.get() == nullptr) {
187 return;
188 }
189 for (size_t class_def_index = 0;
190 class_def_index < dex_file->NumClassDefs();
191 class_def_index++) {
192 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
193 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
194 OatClassType type = oat_class.GetType();
195 switch (type) {
196 case kOatClassAllCompiled:
197 case kOatClassSomeCompiled:
198 WalkOatClass(oat_class, *dex_file.get(), class_def, callback);
199 break;
200
201 case kOatClassNoneCompiled:
202 case kOatClassMax:
203 // Ignore.
204 break;
205 }
206 }
207 }
208
209 void WalkOatClass(const OatFile::OatClass& oat_class, const DexFile& dex_file,
210 const DexFile::ClassDef& class_def, Callback callback) {
211 const byte* class_data = dex_file.GetClassData(class_def);
212 if (class_data == nullptr) { // empty class such as a marker interface?
213 return;
214 }
215 // Note: even if this is an interface or a native class, we still have to walk it, as there
216 // might be a static initializer.
217 ClassDataItemIterator it(dex_file, class_data);
218 SkipAllFields(&it);
219 uint32_t class_method_idx = 0;
220 while (it.HasNextDirectMethod()) {
221 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
222 WalkOatMethod(class_def, class_method_idx, oat_method, dex_file, it.GetMemberIndex(),
223 it.GetMethodCodeItem(), it.GetMemberAccessFlags(), callback);
224 class_method_idx++;
225 it.Next();
226 }
227 while (it.HasNextVirtualMethod()) {
228 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
229 WalkOatMethod(class_def, class_method_idx, oat_method, dex_file, it.GetMemberIndex(),
230 it.GetMethodCodeItem(), it.GetMemberAccessFlags(), callback);
231 class_method_idx++;
232 it.Next();
233 }
234 DCHECK(!it.HasNext());
235 }
236
237 void WalkOatMethod(const DexFile::ClassDef& class_def, uint32_t class_method_index,
238 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
239 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
240 uint32_t method_access_flags, Callback callback) {
241 if ((method_access_flags & kAccAbstract) != 0) {
242 // Abstract method, no code.
243 return;
244 }
245 if (oat_method.GetCodeOffset() == 0) {
246 // No code.
247 return;
248 }
249
250 (this->*callback)(class_def, class_method_index, oat_method, dex_file, dex_method_idx, code_item,
251 method_access_flags);
252 }
253
254 void RegisterForDedup(const DexFile::ClassDef& class_def, uint32_t class_method_index,
255 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
256 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
257 uint32_t method_access_flags) {
258 state_[oat_method.GetCodeOffset()]++;
259 }
260
261 void NormalizeState() {
262 for (auto& x : state_) {
263 if (x.second == 1) {
264 state_[x.first] = 0;
265 }
266 }
267 }
268
269 enum class DedupState { // private
270 kNotDeduplicated,
271 kDeduplicatedFirst,
272 kDeduplicatedOther
273 };
274 DedupState IsDuplicated(uint32_t offset) {
275 if (state_[offset] == 0) {
276 return DedupState::kNotDeduplicated;
277 }
278 if (state_[offset] == 1) {
279 return DedupState::kDeduplicatedOther;
280 }
281 state_[offset] = 1;
282 return DedupState::kDeduplicatedFirst;
283 }
284
285 void AddSymbol(const DexFile::ClassDef& class_def, uint32_t class_method_index,
286 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
287 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
288 uint32_t method_access_flags) {
289 DedupState dedup = IsDuplicated(oat_method.GetCodeOffset());
290 if (dedup != DedupState::kDeduplicatedOther) {
291 std::string pretty_name = PrettyMethod(dex_method_idx, dex_file, true);
292
293 if (dedup == DedupState::kDeduplicatedFirst) {
294 pretty_name = "[Dedup]" + pretty_name;
295 }
296
297 ElfSymtabBuilder<Elf32_Word, Elf32_Sword, Elf32_Addr,
298 Elf32_Sym, Elf32_Shdr>* symtab = &builder_->symtab_builder_;
299
300 symtab->AddSymbol(pretty_name, &builder_->text_builder_, oat_method.GetCodeOffset() -
301 oat_file_->GetOatHeader().GetExecutableOffset(), true,
302 oat_method.GetQuickCodeSize(), STB_GLOBAL, STT_FUNC);
303 }
304 }
305
306 // Write oat code. Required by ElfBuilder/CodeOutput.
307 bool Write(OutputStream* out) {
308 return out->WriteFully(oat_file_->Begin(), oat_file_->End() - oat_file_->Begin());
309 }
310
311 private:
312 static void SkipAllFields(ClassDataItemIterator* it) {
313 while (it->HasNextStaticField()) {
314 it->Next();
315 }
316 while (it->HasNextInstanceField()) {
317 it->Next();
318 }
319 }
320
321 const OatFile* oat_file_;
322 std::unique_ptr<ElfBuilder<Elf32_Word, Elf32_Sword, Elf32_Addr, Elf32_Dyn,
323 Elf32_Sym, Elf32_Ehdr, Elf32_Phdr, Elf32_Shdr> > builder_;
324 File* elf_output_;
325 std::unordered_map<uint32_t, uint32_t> state_;
326 std::string output_name_;
327};
328
Elliott Hughese3c845c2012-02-28 17:23:01 -0800329class OatDumper {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700330 public:
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000331 explicit OatDumper(const OatFile& oat_file, bool dump_raw_mapping_table, bool dump_raw_gc_map)
332 : oat_file_(oat_file),
Elliott Hughesa72ec822012-03-05 17:12:22 -0800333 oat_dex_files_(oat_file.GetOatDexFiles()),
Dave Allison404f59f2014-02-24 11:10:01 -0800334 dump_raw_mapping_table_(dump_raw_mapping_table),
335 dump_raw_gc_map_(dump_raw_gc_map),
Elliott Hughesa72ec822012-03-05 17:12:22 -0800336 disassembler_(Disassembler::Create(oat_file_.GetOatHeader().GetInstructionSet())) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800337 AddAllOffsets();
338 }
339
340 void Dump(std::ostream& os) {
341 const OatHeader& oat_header = oat_file_.GetOatHeader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700342
343 os << "MAGIC:\n";
344 os << oat_header.GetMagic() << "\n\n";
345
346 os << "CHECKSUM:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800347 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700348
Elliott Hughesa72ec822012-03-05 17:12:22 -0800349 os << "INSTRUCTION SET:\n";
350 os << oat_header.GetInstructionSet() << "\n\n";
351
Dave Allison70202782013-10-22 17:52:19 -0700352 os << "INSTRUCTION SET FEATURES:\n";
353 os << oat_header.GetInstructionSetFeatures().GetFeatureString() << "\n\n";
354
Brian Carlstromaded5f72011-10-07 17:15:04 -0700355 os << "DEX FILE COUNT:\n";
356 os << oat_header.GetDexFileCount() << "\n\n";
357
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800358#define DUMP_OAT_HEADER_OFFSET(label, offset) \
359 os << label " OFFSET:\n"; \
360 os << StringPrintf("0x%08x", oat_header.offset()); \
361 if (oat_header.offset() != 0) { \
362 os << StringPrintf(" (%p)", oat_file_.Begin() + oat_header.offset()); \
363 } \
364 os << StringPrintf("\n\n");
365
366 DUMP_OAT_HEADER_OFFSET("EXECUTABLE", GetExecutableOffset);
367 DUMP_OAT_HEADER_OFFSET("INTERPRETER TO INTERPRETER BRIDGE",
368 GetInterpreterToInterpreterBridgeOffset);
369 DUMP_OAT_HEADER_OFFSET("INTERPRETER TO COMPILED CODE BRIDGE",
370 GetInterpreterToCompiledCodeBridgeOffset);
371 DUMP_OAT_HEADER_OFFSET("JNI DLSYM LOOKUP",
372 GetJniDlsymLookupOffset);
373 DUMP_OAT_HEADER_OFFSET("PORTABLE IMT CONFLICT TRAMPOLINE",
374 GetPortableImtConflictTrampolineOffset);
375 DUMP_OAT_HEADER_OFFSET("PORTABLE RESOLUTION TRAMPOLINE",
376 GetPortableResolutionTrampolineOffset);
377 DUMP_OAT_HEADER_OFFSET("PORTABLE TO INTERPRETER BRIDGE",
378 GetPortableToInterpreterBridgeOffset);
379 DUMP_OAT_HEADER_OFFSET("QUICK GENERIC JNI TRAMPOLINE",
380 GetQuickGenericJniTrampolineOffset);
381 DUMP_OAT_HEADER_OFFSET("QUICK IMT CONFLICT TRAMPOLINE",
382 GetQuickImtConflictTrampolineOffset);
383 DUMP_OAT_HEADER_OFFSET("QUICK RESOLUTION TRAMPOLINE",
384 GetQuickResolutionTrampolineOffset);
385 DUMP_OAT_HEADER_OFFSET("QUICK TO INTERPRETER BRIDGE",
386 GetQuickToInterpreterBridgeOffset);
387#undef DUMP_OAT_HEADER_OFFSET
Brian Carlstromaded5f72011-10-07 17:15:04 -0700388
Alex Lighta59dd802014-07-02 16:28:08 -0700389 os << "IMAGE PATCH DELTA:\n" << oat_header.GetImagePatchDelta();
390
Brian Carlstrom28db0122012-10-18 16:20:41 -0700391 os << "IMAGE FILE LOCATION OAT CHECKSUM:\n";
392 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum());
393
394 os << "IMAGE FILE LOCATION OAT BEGIN:\n";
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800395 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700396
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700397 // Print the key-value store.
398 {
399 os << "KEY VALUE STORE:\n";
400 size_t index = 0;
401 const char* key;
402 const char* value;
403 while (oat_header.GetStoreKeyValuePairByIndex(index, &key, &value)) {
404 os << key << " = " << value << "\n";
405 index++;
406 }
407 os << "\n";
408 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700409
Ian Rogers30fab402012-01-23 15:43:46 -0800410 os << "BEGIN:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800411 os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700412
Ian Rogers30fab402012-01-23 15:43:46 -0800413 os << "END:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800414 os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700415
416 os << std::flush;
417
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800418 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
419 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Brian Carlstromaded5f72011-10-07 17:15:04 -0700420 CHECK(oat_dex_file != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800421 DumpOatDexFile(os, *oat_dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700422 }
423 }
424
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800425 size_t ComputeSize(const void* oat_data) {
426 if (reinterpret_cast<const byte*>(oat_data) < oat_file_.Begin() ||
427 reinterpret_cast<const byte*>(oat_data) > oat_file_.End()) {
428 return 0; // Address not in oat file
429 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800430 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) -
431 reinterpret_cast<uintptr_t>(oat_file_.Begin());
432 auto it = offsets_.upper_bound(begin_offset);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800433 CHECK(it != offsets_.end());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800434 uintptr_t end_offset = *it;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800435 return end_offset - begin_offset;
436 }
437
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700438 InstructionSet GetInstructionSet() {
439 return oat_file_.GetOatHeader().GetInstructionSet();
440 }
441
Ian Rogersef7d42f2014-01-06 12:55:46 -0800442 const void* GetQuickOatCode(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800443 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
444 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700445 CHECK(oat_dex_file != nullptr);
446 std::string error_msg;
Ian Rogers700a4022014-05-19 16:49:03 -0700447 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700448 if (dex_file.get() == nullptr) {
449 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
450 << "': " << error_msg;
451 } else {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700452 const DexFile::ClassDef* class_def =
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700453 dex_file->FindClassDef(m->GetDeclaringClassDescriptor());
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700454 if (class_def != NULL) {
455 uint16_t class_def_index = dex_file->GetIndexForClassDef(*class_def);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100456 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800457 size_t method_index = m->GetMethodIndex();
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100458 return oat_class.GetOatMethod(method_index).GetQuickCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800459 }
460 }
461 }
462 return NULL;
463 }
464
Brian Carlstromaded5f72011-10-07 17:15:04 -0700465 private:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800466 void AddAllOffsets() {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800467 // We don't know the length of the code for each method, but we need to know where to stop
468 // when disassembling. What we do know is that a region of code will be followed by some other
469 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
470 // of a piece of code by using upper_bound to find the start of the next region.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800471 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
472 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800473 CHECK(oat_dex_file != NULL);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700474 std::string error_msg;
Ian Rogers700a4022014-05-19 16:49:03 -0700475 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700476 if (dex_file.get() == nullptr) {
477 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
478 << "': " << error_msg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800479 continue;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800480 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800481 offsets_.insert(reinterpret_cast<uintptr_t>(&dex_file->GetHeader()));
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800482 for (size_t class_def_index = 0;
483 class_def_index < dex_file->NumClassDefs();
484 class_def_index++) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800485 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100486 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800487 const byte* class_data = dex_file->GetClassData(class_def);
488 if (class_data != NULL) {
489 ClassDataItemIterator it(*dex_file, class_data);
490 SkipAllFields(it);
491 uint32_t class_method_index = 0;
492 while (it.HasNextDirectMethod()) {
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100493 AddOffsets(oat_class.GetOatMethod(class_method_index++));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800494 it.Next();
495 }
496 while (it.HasNextVirtualMethod()) {
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100497 AddOffsets(oat_class.GetOatMethod(class_method_index++));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800498 it.Next();
499 }
500 }
501 }
502 }
503
504 // If the last thing in the file is code for a method, there won't be an offset for the "next"
505 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
506 // for the end of the file.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800507 offsets_.insert(oat_file_.Size());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800508 }
509
510 void AddOffsets(const OatFile::OatMethod& oat_method) {
Brian Carlstrom95ba0dc2012-03-05 22:06:14 -0800511 uint32_t code_offset = oat_method.GetCodeOffset();
512 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
513 code_offset &= ~0x1;
514 }
515 offsets_.insert(code_offset);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800516 offsets_.insert(oat_method.GetMappingTableOffset());
517 offsets_.insert(oat_method.GetVmapTableOffset());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700518 offsets_.insert(oat_method.GetNativeGcMapOffset());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800519 }
520
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800521 void DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700522 os << "OAT DEX FILE:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800523 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800524 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700525
526 // Create the verifier early.
527
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700528 std::string error_msg;
Ian Rogers700a4022014-05-19 16:49:03 -0700529 std::unique_ptr<const DexFile> dex_file(oat_dex_file.OpenDexFile(&error_msg));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800530 if (dex_file.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700531 os << "NOT FOUND: " << error_msg << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700532 return;
533 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800534 for (size_t class_def_index = 0;
535 class_def_index < dex_file->NumClassDefs();
536 class_def_index++) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700537 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
538 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100539 const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index);
Brian Carlstromba150c32013-08-27 17:31:03 -0700540 os << StringPrintf("%zd: %s (type_idx=%d)", class_def_index, descriptor, class_def.class_idx_)
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100541 << " (" << oat_class.GetStatus() << ")"
542 << " (" << oat_class.GetType() << ")\n";
543 // TODO: include bitmap here if type is kOatClassSomeCompiled?
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800544 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
545 std::ostream indented_os(&indent_filter);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100546 DumpOatClass(indented_os, oat_class, *(dex_file.get()), class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700547 }
548
549 os << std::flush;
550 }
551
Elliott Hughese3c845c2012-02-28 17:23:01 -0800552 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700553 while (it.HasNextStaticField()) {
554 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700555 }
Ian Rogers0571d352011-11-03 19:51:38 -0700556 while (it.HasNextInstanceField()) {
557 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700558 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800559 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700560
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800561 void DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
562 const DexFile::ClassDef& class_def) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800563 const byte* class_data = dex_file.GetClassData(class_def);
564 if (class_data == NULL) { // empty class such as a marker interface?
565 return;
566 }
567 ClassDataItemIterator it(dex_file, class_data);
568 SkipAllFields(it);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800569 uint32_t class_method_idx = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700570 while (it.HasNextDirectMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800571 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700572 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800573 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
574 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700575 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700576 }
Ian Rogers0571d352011-11-03 19:51:38 -0700577 while (it.HasNextVirtualMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800578 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700579 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800580 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
581 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700582 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700583 }
Ian Rogers0571d352011-11-03 19:51:38 -0700584 DCHECK(!it.HasNext());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700585 os << std::flush;
586 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800587
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700588 void DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def,
589 uint32_t class_method_index,
Elliott Hughese3c845c2012-02-28 17:23:01 -0800590 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800591 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
592 uint32_t method_access_flags) {
593 os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700594 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
595 dex_method_idx);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800596 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700597 std::unique_ptr<std::ostream> indent1_os(new std::ostream(&indent1_filter));
598 Indenter indent2_filter(indent1_os->rdbuf(), kIndentChar, kIndentBy1Count);
599 std::unique_ptr<std::ostream> indent2_os(new std::ostream(&indent2_filter));
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800600 {
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700601 *indent1_os << "DEX CODE:\n";
602 DumpDexCode(*indent2_os, dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700603 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800604 if (Runtime::Current() != NULL) {
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700605 *indent1_os << "VERIFIER TYPE ANALYSIS:\n";
606 DumpVerifier(*indent2_os, dex_method_idx, &dex_file, class_def, code_item,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700607 method_access_flags);
Ian Rogersb23a7722012-10-09 16:54:26 -0700608 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800609 {
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700610 *indent1_os << "OAT DATA:\n";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800611
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700612 *indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
613 *indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
614 DumpSpillMask(*indent2_os, oat_method.GetCoreSpillMask(), false);
615 *indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
616 DumpSpillMask(*indent2_os, oat_method.GetFpSpillMask(), true);
617 *indent2_os << StringPrintf("\nvmap_table: %p (offset=0x%08x)\n",
618 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
619 DumpVmap(*indent2_os, oat_method);
Razvan A Lupusorufaf9f0d2014-08-29 17:56:46 -0700620 DumpVregLocations(*indent2_os, oat_method, code_item);
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700621 *indent2_os << StringPrintf("mapping_table: %p (offset=0x%08x)\n",
622 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
Dave Allison404f59f2014-02-24 11:10:01 -0800623 if (dump_raw_mapping_table_) {
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700624 Indenter indent3_filter(indent2_os->rdbuf(), kIndentChar, kIndentBy1Count);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800625 std::ostream indent3_os(&indent3_filter);
626 DumpMappingTable(indent3_os, oat_method);
627 }
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700628 *indent2_os << StringPrintf("gc_map: %p (offset=0x%08x)\n",
629 oat_method.GetNativeGcMap(), oat_method.GetNativeGcMapOffset());
Dave Allison404f59f2014-02-24 11:10:01 -0800630 if (dump_raw_gc_map_) {
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700631 Indenter indent3_filter(indent2_os->rdbuf(), kIndentChar, kIndentBy1Count);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800632 std::ostream indent3_os(&indent3_filter);
633 DumpGcMap(indent3_os, oat_method, code_item);
634 }
635 }
636 {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800637 const void* code = oat_method.GetQuickCode();
638 uint32_t code_size = oat_method.GetQuickCodeSize();
639 if (code == nullptr) {
640 code = oat_method.GetPortableCode();
641 code_size = oat_method.GetPortableCodeSize();
642 }
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700643 *indent1_os << StringPrintf("CODE: %p (offset=0x%08x size=%d)%s\n",
Ian Rogersef7d42f2014-01-06 12:55:46 -0800644 code,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800645 oat_method.GetCodeOffset(),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800646 code_size,
647 code != nullptr ? "..." : "");
Mathieu Chartier590fee92013-09-13 13:46:47 -0700648
649 Runtime* runtime = Runtime::Current();
650 if (runtime != nullptr) {
651 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierbf99f772014-08-23 16:37:27 -0700652 StackHandleScope<1> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700653 Handle<mirror::DexCache> dex_cache(
654 hs.NewHandle(runtime->GetClassLinker()->FindDexCache(dex_file)));
Mathieu Chartierbf99f772014-08-23 16:37:27 -0700655 verifier::MethodVerifier verifier(&dex_file, dex_cache, NullHandle<mirror::ClassLoader>(),
656 &class_def, code_item, dex_method_idx,
657 NullHandle<mirror::ArtMethod>(), method_access_flags,
Ian Rogers46960fe2014-05-23 10:43:43 -0700658 true, true, true);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700659 verifier.Verify();
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700660 DumpCode(*indent2_os, &verifier, oat_method, code_item);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700661 } else {
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700662 DumpCode(*indent2_os, nullptr, oat_method, code_item);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700663 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800664 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700665 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800666
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800667 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
668 if (spill_mask == 0) {
669 return;
670 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800671 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800672 for (size_t i = 0; i < 32; i++) {
673 if ((spill_mask & (1 << i)) != 0) {
674 if (is_float) {
675 os << "fr" << i;
676 } else {
677 os << "r" << i;
678 }
679 spill_mask ^= 1 << i; // clear bit
680 if (spill_mask != 0) {
681 os << ", ";
682 } else {
683 break;
684 }
685 }
686 }
687 os << ")";
688 }
689
Ian Rogersb23a7722012-10-09 16:54:26 -0700690 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogers1809a722013-08-09 22:05:32 -0700691 const uint8_t* raw_table = oat_method.GetVmapTable();
692 if (raw_table != NULL) {
693 const VmapTable vmap_table(raw_table);
694 bool first = true;
695 bool processing_fp = false;
696 uint32_t spill_mask = oat_method.GetCoreSpillMask();
697 for (size_t i = 0; i < vmap_table.Size(); i++) {
698 uint16_t dex_reg = vmap_table[i];
699 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
700 processing_fp ? kFloatVReg : kIntVReg);
701 os << (first ? "v" : ", v") << dex_reg;
702 if (!processing_fp) {
703 os << "/r" << cpu_reg;
704 } else {
705 os << "/fr" << cpu_reg;
706 }
707 first = false;
708 if (!processing_fp && dex_reg == 0xFFFF) {
709 processing_fp = true;
710 spill_mask = oat_method.GetFpSpillMask();
711 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800712 }
Ian Rogers1809a722013-08-09 22:05:32 -0700713 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800714 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800715 }
716
Razvan A Lupusorufaf9f0d2014-08-29 17:56:46 -0700717 void DumpVregLocations(std::ostream& os, const OatFile::OatMethod& oat_method,
718 const DexFile::CodeItem* code_item) {
719 if (code_item != nullptr) {
720 size_t num_locals_ins = code_item->registers_size_;
721 size_t num_ins = code_item->ins_size_;
722 size_t num_locals = num_locals_ins - num_ins;
723 size_t num_outs = code_item->outs_size_;
724
725 os << "vr_stack_locations:";
726 for (size_t reg = 0; reg <= num_locals_ins; reg++) {
727 // For readability, delimit the different kinds of VRs.
728 if (reg == num_locals_ins) {
729 os << "\n\tmethod*:";
730 } else if (reg == num_locals && num_ins > 0) {
731 os << "\n\tins:";
732 } else if (reg == 0 && num_locals > 0) {
733 os << "\n\tlocals:";
734 }
735
736 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
737 oat_method.GetFpSpillMask(),
738 oat_method.GetFrameSizeInBytes(), reg,
739 GetInstructionSet());
740 os << " v" << reg << "[sp + #" << offset << "]";
741 }
742
743 for (size_t out_reg = 0; out_reg < num_outs; out_reg++) {
744 if (out_reg == 0) {
745 os << "\n\touts:";
746 }
747
748 uint32_t offset = StackVisitor::GetOutVROffset(out_reg, GetInstructionSet());
749 os << " v" << out_reg << "[sp + #" << offset << "]";
750 }
751
752 os << "\n";
753 }
754 }
755
Ian Rogersb23a7722012-10-09 16:54:26 -0700756 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800757 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogers1809a722013-08-09 22:05:32 -0700758 const uint8_t* raw_table = oat_method.GetVmapTable();
Ian Rogersb23a7722012-10-09 16:54:26 -0700759 if (raw_table != NULL) {
760 const VmapTable vmap_table(raw_table);
761 uint32_t vmap_offset;
Ian Rogers1809a722013-08-09 22:05:32 -0700762 if (vmap_table.IsInContext(reg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800763 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
764 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
765 : oat_method.GetCoreSpillMask();
766 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -0700767 } else {
768 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
769 oat_method.GetFpSpillMask(),
Nicolas Geoffray42fcd982014-04-22 11:03:52 +0000770 oat_method.GetFrameSizeInBytes(), reg,
771 GetInstructionSet());
Ian Rogersb23a7722012-10-09 16:54:26 -0700772 os << "[sp + #" << offset << "]";
773 }
774 }
775 }
776
Ian Rogersef7d42f2014-01-06 12:55:46 -0800777 void DumpGcMapRegisters(std::ostream& os, const OatFile::OatMethod& oat_method,
778 const DexFile::CodeItem* code_item,
779 size_t num_regs, const uint8_t* reg_bitmap) {
780 bool first = true;
781 for (size_t reg = 0; reg < num_regs; reg++) {
782 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
783 if (first) {
784 os << " v" << reg << " (";
785 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
786 os << ")";
787 first = false;
788 } else {
789 os << ", v" << reg << " (";
790 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
791 os << ")";
792 }
793 }
794 }
795 if (first) {
796 os << "No registers in GC map\n";
797 } else {
798 os << "\n";
799 }
800 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700801 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
802 const DexFile::CodeItem* code_item) {
803 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800804 if (gc_map_raw == nullptr) {
805 return; // No GC map.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800806 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800807 const void* quick_code = oat_method.GetQuickCode();
808 if (quick_code != nullptr) {
809 NativePcOffsetToReferenceMap map(gc_map_raw);
810 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
811 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(quick_code) +
812 map.GetNativePcOffset(entry);
813 os << StringPrintf("%p", native_pc);
814 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800815 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800816 } else {
817 const void* portable_code = oat_method.GetPortableCode();
818 CHECK(portable_code != nullptr);
819 verifier::DexPcToReferenceMap map(gc_map_raw);
820 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
821 uint32_t dex_pc = map.GetDexPc(entry);
822 os << StringPrintf("0x%08x", dex_pc);
823 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
824 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800825 }
826 }
827
828 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800829 const void* quick_code = oat_method.GetQuickCode();
830 if (quick_code == nullptr) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800831 return;
832 }
Ian Rogers1809a722013-08-09 22:05:32 -0700833 MappingTable table(oat_method.GetMappingTable());
834 if (table.TotalSize() != 0) {
835 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
836 std::ostream indent_os(&indent_filter);
837 if (table.PcToDexSize() != 0) {
838 typedef MappingTable::PcToDexIterator It;
839 os << "suspend point mappings {\n";
840 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
841 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
842 }
843 os << "}\n";
844 }
845 if (table.DexToPcSize() != 0) {
846 typedef MappingTable::DexToPcIterator It;
847 os << "catch entry mappings {\n";
848 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
849 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
850 }
851 os << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800852 }
853 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800854 }
855
Ian Rogers1809a722013-08-09 22:05:32 -0700856 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
857 size_t offset, bool suspend_point_mapping) {
858 MappingTable table(oat_method.GetMappingTable());
859 if (suspend_point_mapping && table.PcToDexSize() > 0) {
860 typedef MappingTable::PcToDexIterator It;
861 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
862 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700863 os << StringPrintf("suspend point dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700864 return cur.DexPc();
865 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800866 }
Ian Rogers1809a722013-08-09 22:05:32 -0700867 } else if (!suspend_point_mapping && table.DexToPcSize() > 0) {
868 typedef MappingTable::DexToPcIterator It;
869 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
870 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700871 os << StringPrintf("catch entry dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700872 return cur.DexPc();
Ian Rogersb23a7722012-10-09 16:54:26 -0700873 }
874 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800875 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800876 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -0700877 }
878
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800879 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
880 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700881 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
882 if (gc_map_raw != NULL) {
883 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800884 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700885 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800886 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -0700887 bool first = true;
888 for (size_t reg = 0; reg < num_regs; reg++) {
889 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
890 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800891 os << "GC map objects: v" << reg << " (";
892 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700893 os << ")";
894 first = false;
895 } else {
896 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800897 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700898 os << ")";
899 }
900 }
901 }
902 if (!first) {
903 os << "\n";
904 }
905 }
906 }
907 }
908
Mathieu Chartier590fee92013-09-13 13:46:47 -0700909 void DumpVRegsAtDexPc(std::ostream& os, verifier::MethodVerifier* verifier,
910 const OatFile::OatMethod& oat_method,
911 const DexFile::CodeItem* code_item, uint32_t dex_pc) {
912 DCHECK(verifier != nullptr);
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800913 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800914 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800915 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
916 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
917 if (kind != kUndefined) {
918 if (first) {
919 os << "VRegs: v";
920 first = false;
921 } else {
922 os << ", v";
923 }
924 os << reg << " (";
925 switch (kind) {
926 case kImpreciseConstant:
927 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
928 DescribeVReg(os, oat_method, code_item, reg, kind);
929 break;
930 case kConstant:
931 os << "Constant: " << kinds.at((reg * 2) + 1);
932 break;
933 default:
934 DescribeVReg(os, oat_method, code_item, reg, kind);
935 break;
936 }
937 os << ")";
938 }
939 }
940 if (!first) {
941 os << "\n";
942 }
943 }
944
945
Ian Rogersb23a7722012-10-09 16:54:26 -0700946 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
947 if (code_item != NULL) {
948 size_t i = 0;
949 while (i < code_item->insns_size_in_code_units_) {
950 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800951 os << StringPrintf("0x%04zx: %s\n", i, instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -0700952 i += instruction->SizeInCodeUnits();
953 }
954 }
955 }
956
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800957 void DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700958 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800959 uint32_t method_access_flags) {
960 if ((method_access_flags & kAccNative) == 0) {
961 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierbf99f772014-08-23 16:37:27 -0700962 StackHandleScope<1> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700963 Handle<mirror::DexCache> dex_cache(
964 hs.NewHandle(Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file)));
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800965 verifier::MethodVerifier::VerifyMethodAndDump(os, dex_method_idx, dex_file, dex_cache,
Mathieu Chartierbf99f772014-08-23 16:37:27 -0700966 NullHandle<mirror::ClassLoader>(), &class_def,
967 code_item, NullHandle<mirror::ArtMethod>(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800968 method_access_flags);
969 }
970 }
971
Mathieu Chartier590fee92013-09-13 13:46:47 -0700972 void DumpCode(std::ostream& os, verifier::MethodVerifier* verifier,
973 const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800974 const void* portable_code = oat_method.GetPortableCode();
975 const void* quick_code = oat_method.GetQuickCode();
976
977 size_t code_size = oat_method.GetQuickCodeSize();
978 if ((code_size == 0) || ((portable_code == nullptr) && (quick_code == nullptr))) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800979 os << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -0700980 return;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800981 } else if (quick_code != nullptr) {
982 const uint8_t* quick_native_pc = reinterpret_cast<const uint8_t*>(quick_code);
983 size_t offset = 0;
984 while (offset < code_size) {
985 DumpMappingAtOffset(os, oat_method, offset, false);
986 offset += disassembler_->Dump(os, quick_native_pc + offset);
987 uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
988 if (dex_pc != DexFile::kDexNoIndex) {
989 DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
990 if (verifier != nullptr) {
991 DumpVRegsAtDexPc(os, verifier, oat_method, code_item, dex_pc);
992 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800993 }
994 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800995 } else {
996 CHECK(portable_code != nullptr);
997 CHECK_EQ(code_size, 0U); // TODO: disassembly of portable is currently not supported.
Ian Rogersb23a7722012-10-09 16:54:26 -0700998 }
999 }
1000
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001001 const OatFile& oat_file_;
1002 std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Dave Allison404f59f2014-02-24 11:10:01 -08001003 bool dump_raw_mapping_table_;
1004 bool dump_raw_gc_map_;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001005 std::set<uintptr_t> offsets_;
Ian Rogers700a4022014-05-19 16:49:03 -07001006 std::unique_ptr<Disassembler> disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001007};
1008
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001009class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001010 public:
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001011 explicit ImageDumper(std::ostream* os, gc::space::ImageSpace& image_space,
Dave Allison404f59f2014-02-24 11:10:01 -08001012 const ImageHeader& image_header, bool dump_raw_mapping_table,
1013 bool dump_raw_gc_map)
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001014 : os_(os), image_space_(image_space), image_header_(image_header),
Dave Allison404f59f2014-02-24 11:10:01 -08001015 dump_raw_mapping_table_(dump_raw_mapping_table),
1016 dump_raw_gc_map_(dump_raw_gc_map) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001017
Ian Rogersb726dcb2012-09-05 08:57:23 -07001018 void Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001019 std::ostream& os = *os_;
1020 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -07001021
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001022 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001023
Mathieu Chartier31e89252013-08-28 11:29:12 -07001024 os << "IMAGE BITMAP OFFSET: " << reinterpret_cast<void*>(image_header_.GetImageBitmapOffset())
1025 << " SIZE: " << reinterpret_cast<void*>(image_header_.GetImageBitmapSize()) << "\n\n";
1026
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001027 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001028
Brian Carlstrom700c8d32012-11-05 10:42:02 -08001029 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001030
Brian Carlstrom700c8d32012-11-05 10:42:02 -08001031 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
1032
1033 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
1034
1035 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001036
Alex Lighta59dd802014-07-02 16:28:08 -07001037 os << "PATCH DELTA:" << image_header_.GetPatchDelta() << "\n\n";
1038
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001039 {
1040 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
1041 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1042 std::ostream indent1_os(&indent1_filter);
1043 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
1044 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
1045 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
1046 const char* image_root_description = image_roots_descriptions_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001047 mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001048 indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
1049 if (image_root_object->IsObjectArray()) {
1050 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
1051 std::ostream indent2_os(&indent2_filter);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001052 mirror::ObjectArray<mirror::Object>* image_root_object_array
Ian Rogersfa824272013-11-05 16:12:57 -08001053 = image_root_object->AsObjectArray<mirror::Object>();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001054 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001055 mirror::Object* value = image_root_object_array->Get(i);
Ian Rogersfa824272013-11-05 16:12:57 -08001056 size_t run = 0;
1057 for (int32_t j = i + 1; j < image_root_object_array->GetLength(); j++) {
1058 if (value == image_root_object_array->Get(j)) {
1059 run++;
1060 } else {
1061 break;
1062 }
1063 }
1064 if (run == 0) {
1065 indent2_os << StringPrintf("%d: ", i);
1066 } else {
1067 indent2_os << StringPrintf("%d to %zd: ", i, i + run);
1068 i = i + run;
1069 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001070 if (value != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001071 PrettyObjectValue(indent2_os, value->GetClass(), value);
1072 } else {
1073 indent2_os << i << ": null\n";
1074 }
Ian Rogersd5b32602012-02-26 16:40:04 -08001075 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -07001076 }
1077 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001078 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001079 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001080
Brian Carlstromaded5f72011-10-07 17:15:04 -07001081 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001082 std::string image_filename = image_space_.GetImageFilename();
1083 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_filename);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001084 os << "OAT LOCATION: " << oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001085 os << "\n";
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001086 std::string error_msg;
Alex Lighta59dd802014-07-02 16:28:08 -07001087 const OatFile* oat_file = class_linker->FindOpenedOatFileFromOatLocation(oat_location);
1088 if (oat_file == nullptr) {
1089 oat_file = OatFile::Open(oat_location, oat_location, NULL, false, &error_msg);
1090 if (oat_file == nullptr) {
1091 os << "NOT FOUND: " << error_msg << "\n";
1092 return;
1093 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001094 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001095 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001096
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001097 stats_.oat_file_bytes = oat_file->Size();
1098
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +00001099 oat_dumper_.reset(new OatDumper(*oat_file, dump_raw_mapping_table_,
Dave Allison404f59f2014-02-24 11:10:01 -08001100 dump_raw_gc_map_));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001101
Mathieu Chartier02e25112013-08-14 16:14:24 -07001102 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
Ian Rogers05f28c62012-10-23 18:12:13 -07001103 CHECK(oat_dex_file != NULL);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001104 stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(),
1105 oat_dex_file->FileSize()));
Ian Rogers05f28c62012-10-23 18:12:13 -07001106 }
1107
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001108 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001109
1110 // Loop through all the image spaces and dump their objects.
Ian Rogers1d54e732013-05-02 21:10:01 -07001111 gc::Heap* heap = Runtime::Current()->GetHeap();
1112 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -07001113 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001114 {
Mathieu Chartierc22c59e2014-02-24 15:16:06 -08001115 {
1116 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
1117 heap->FlushAllocStack();
1118 }
Hiroshi Yamauchi90d70682014-02-20 16:17:30 -08001119 // Since FlushAllocStack() above resets the (active) allocation
1120 // stack. Need to revoke the thread-local allocation stacks that
1121 // point into it.
Mathieu Chartierc22c59e2014-02-24 15:16:06 -08001122 {
1123 self->TransitionFromRunnableToSuspended(kNative);
1124 ThreadList* thread_list = Runtime::Current()->GetThreadList();
1125 thread_list->SuspendAll();
1126 heap->RevokeAllThreadLocalAllocationStacks(self);
1127 thread_list->ResumeAll();
1128 self->TransitionFromSuspendedToRunnable();
1129 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001130 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001131 {
1132 std::ostream* saved_os = os_;
1133 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1134 std::ostream indent_os(&indent_filter);
1135 os_ = &indent_os;
1136 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001137 for (const auto& space : spaces) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001138 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001139 gc::space::ImageSpace* image_space = space->AsImageSpace();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001140 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
1141 indent_os << "\n";
1142 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001143 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001144 // Dump the large objects separately.
Mathieu Chartierbbd695c2014-04-16 09:48:48 -07001145 heap->GetLargeObjectsSpace()->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001146 indent_os << "\n";
1147 os_ = saved_os;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001148 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001149 os << "STATS:\n" << std::flush;
Ian Rogers700a4022014-05-19 16:49:03 -07001150 std::unique_ptr<File> file(OS::OpenFileForReading(image_filename.c_str()));
Brian Carlstrom6f277752013-09-30 17:56:45 -07001151 if (file.get() == NULL) {
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001152 LOG(WARNING) << "Failed to find image in " << image_filename;
Brian Carlstrom6f277752013-09-30 17:56:45 -07001153 }
1154 if (file.get() != NULL) {
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001155 stats_.file_bytes = file->GetLength();
Brian Carlstrom6f277752013-09-30 17:56:45 -07001156 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001157 size_t header_bytes = sizeof(ImageHeader);
1158 stats_.header_bytes = header_bytes;
1159 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
1160 stats_.alignment_bytes += alignment_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -07001161 stats_.alignment_bytes += image_header_.GetImageBitmapOffset() - image_header_.GetImageSize();
1162 stats_.bitmap_bytes += image_header_.GetImageBitmapSize();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001163 stats_.Dump(os);
1164 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001165
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001166 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001167
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001168 oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001169 }
1170
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001171 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001172 static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001173 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -08001174 CHECK(type != NULL);
1175 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001176 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001177 } else if (type->IsStringClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001178 mirror::String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001179 os << StringPrintf("%p String: %s\n", string,
Ian Rogers68b56852014-08-29 20:19:11 -07001180 PrintableString(string->ToModifiedUtf8().c_str()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -07001181 } else if (type->IsClassClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001182 mirror::Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001183 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -07001184 } else if (type->IsArtFieldClass()) {
1185 mirror::ArtField* field = value->AsArtField();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001186 os << StringPrintf("%p Field: %s\n", field, PrettyField(field).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -07001187 } else if (type->IsArtMethodClass()) {
1188 mirror::ArtMethod* method = value->AsArtMethod();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001189 os << StringPrintf("%p Method: %s\n", method, PrettyMethod(method).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001190 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001191 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001192 }
1193 }
1194
Brian Carlstromea46f952013-07-30 01:26:50 -07001195 static void PrintField(std::ostream& os, mirror::ArtField* field, mirror::Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001196 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001197 const char* descriptor = field->GetTypeDescriptor();
1198 os << StringPrintf("%s: ", field->GetName());
Ian Rogers48efc2b2012-08-27 17:20:31 -07001199 if (descriptor[0] != 'L' && descriptor[0] != '[') {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001200 StackHandleScope<1> hs(Thread::Current());
1201 FieldHelper fh(hs.NewHandle(field));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001202 mirror::Class* type = fh.GetType();
Fred Shih37f05ef2014-07-16 18:38:08 -07001203 DCHECK(type->IsPrimitive());
Ian Rogers48efc2b2012-08-27 17:20:31 -07001204 if (type->IsPrimitiveLong()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001205 os << StringPrintf("%" PRId64 " (0x%" PRIx64 ")\n", field->Get64(obj), field->Get64(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -07001206 } else if (type->IsPrimitiveDouble()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001207 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -07001208 } else if (type->IsPrimitiveFloat()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001209 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Fred Shih37f05ef2014-07-16 18:38:08 -07001210 } else if (type->IsPrimitiveInt()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001211 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Fred Shih37f05ef2014-07-16 18:38:08 -07001212 } else if (type->IsPrimitiveChar()) {
1213 os << StringPrintf("%u (0x%x)\n", field->GetChar(obj), field->GetChar(obj));
1214 } else if (type->IsPrimitiveShort()) {
1215 os << StringPrintf("%d (0x%x)\n", field->GetShort(obj), field->GetShort(obj));
1216 } else if (type->IsPrimitiveBoolean()) {
1217 os << StringPrintf("%s (0x%x)\n", field->GetBoolean(obj)? "true" : "false",
1218 field->GetBoolean(obj));
1219 } else if (type->IsPrimitiveByte()) {
1220 os << StringPrintf("%d (0x%x)\n", field->GetByte(obj), field->GetByte(obj));
1221 } else {
1222 LOG(FATAL) << "Unknown type: " << PrettyClass(type);
Ian Rogers48efc2b2012-08-27 17:20:31 -07001223 }
Ian Rogersd5b32602012-02-26 16:40:04 -08001224 } else {
Ian Rogers48efc2b2012-08-27 17:20:31 -07001225 // Get the value, don't compute the type unless it is non-null as we don't want
1226 // to cause class loading.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001227 mirror::Object* value = field->GetObj(obj);
Ian Rogers48efc2b2012-08-27 17:20:31 -07001228 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001229 os << StringPrintf("null %s\n", PrettyDescriptor(descriptor).c_str());
Ian Rogers48efc2b2012-08-27 17:20:31 -07001230 } else {
Ian Rogers50239c72013-06-17 14:53:22 -07001231 // Grab the field type without causing resolution.
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001232 StackHandleScope<1> hs(Thread::Current());
1233 FieldHelper fh(hs.NewHandle(field));
Ian Rogers50239c72013-06-17 14:53:22 -07001234 mirror::Class* field_type = fh.GetType(false);
1235 if (field_type != NULL) {
1236 PrettyObjectValue(os, field_type, value);
1237 } else {
1238 os << StringPrintf("%p %s\n", value, PrettyDescriptor(descriptor).c_str());
1239 }
Ian Rogers48efc2b2012-08-27 17:20:31 -07001240 }
Ian Rogersd5b32602012-02-26 16:40:04 -08001241 }
1242 }
1243
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001244 static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001245 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001246 mirror::Class* super = klass->GetSuperClass();
Ian Rogersd5b32602012-02-26 16:40:04 -08001247 if (super != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001248 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -08001249 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001250 mirror::ObjectArray<mirror::ArtField>* fields = klass->GetIFields();
Ian Rogersd5b32602012-02-26 16:40:04 -08001251 if (fields != NULL) {
1252 for (int32_t i = 0; i < fields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001253 mirror::ArtField* field = fields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001254 PrintField(os, field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -08001255 }
1256 }
1257 }
1258
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001259 bool InDumpSpace(const mirror::Object* object) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001260 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001261 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001262
Ian Rogersef7d42f2014-01-06 12:55:46 -08001263 const void* GetQuickOatCodeBegin(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001264 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001265 const void* quick_code = m->GetEntryPointFromQuickCompiledCode();
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001266 if (quick_code == Runtime::Current()->GetClassLinker()->GetQuickResolutionTrampoline()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001267 quick_code = oat_dumper_->GetQuickOatCode(m);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001268 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001269 if (oat_dumper_->GetInstructionSet() == kThumb2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001270 quick_code = reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(quick_code) & ~0x1);
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001271 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001272 return quick_code;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001273 }
1274
Ian Rogersef7d42f2014-01-06 12:55:46 -08001275 uint32_t GetQuickOatCodeSize(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001276 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001277 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetQuickOatCodeBegin(m));
1278 if (oat_code_begin == nullptr) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001279 return 0;
1280 }
1281 return oat_code_begin[-1];
1282 }
1283
Ian Rogersef7d42f2014-01-06 12:55:46 -08001284 const void* GetQuickOatCodeEnd(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001285 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001286 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetQuickOatCodeBegin(m));
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001287 if (oat_code_begin == NULL) {
1288 return NULL;
1289 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001290 return oat_code_begin + GetQuickOatCodeSize(m);
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001291 }
1292
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001293 static void Callback(mirror::Object* obj, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001294 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom78128a62011-09-15 17:21:19 -07001295 DCHECK(obj != NULL);
1296 DCHECK(arg != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001297 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001298 if (!state->InDumpSpace(obj)) {
1299 return;
1300 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001301
1302 size_t object_bytes = obj->SizeOf();
1303 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
1304 state->stats_.object_bytes += object_bytes;
1305 state->stats_.alignment_bytes += alignment_bytes;
1306
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001307 std::ostream& os = *state->os_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001308 mirror::Class* obj_class = obj->GetClass();
Ian Rogersd5b32602012-02-26 16:40:04 -08001309 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001310 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
1311 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -08001312 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001313 mirror::Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001314 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
1315 << klass->GetStatus() << ")\n";
Brian Carlstromea46f952013-07-30 01:26:50 -07001316 } else if (obj->IsArtField()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001317 os << StringPrintf("%p: java.lang.reflect.ArtField %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -07001318 PrettyField(obj->AsArtField()).c_str());
1319 } else if (obj->IsArtMethod()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001320 os << StringPrintf("%p: java.lang.reflect.ArtMethod %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -07001321 PrettyMethod(obj->AsArtMethod()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001322 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001323 os << StringPrintf("%p: java.lang.String %s\n", obj,
Ian Rogers68b56852014-08-29 20:19:11 -07001324 PrintableString(obj->AsString()->ToModifiedUtf8().c_str()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001325 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001326 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001327 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001328 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1329 std::ostream indent_os(&indent_filter);
1330 DumpFields(indent_os, obj, obj_class);
Ian Rogersd5b32602012-02-26 16:40:04 -08001331 if (obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001332 mirror::ObjectArray<mirror::Object>* obj_array = obj->AsObjectArray<mirror::Object>();
Ian Rogersd5b32602012-02-26 16:40:04 -08001333 int32_t length = obj_array->GetLength();
1334 for (int32_t i = 0; i < length; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001335 mirror::Object* value = obj_array->Get(i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001336 size_t run = 0;
1337 for (int32_t j = i + 1; j < length; j++) {
1338 if (value == obj_array->Get(j)) {
1339 run++;
1340 } else {
1341 break;
1342 }
1343 }
1344 if (run == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001345 indent_os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001346 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001347 indent_os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -08001348 i = i + run;
1349 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001350 mirror::Class* value_class =
1351 (value == NULL) ? obj_class->GetComponentType() : value->GetClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001352 PrettyObjectValue(indent_os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -08001353 }
1354 } else if (obj->IsClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001355 mirror::ObjectArray<mirror::ArtField>* sfields = obj->AsClass()->GetSFields();
Ian Rogersd5b32602012-02-26 16:40:04 -08001356 if (sfields != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001357 indent_os << "STATICS:\n";
1358 Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
1359 std::ostream indent2_os(&indent2_filter);
Ian Rogersd5b32602012-02-26 16:40:04 -08001360 for (int32_t i = 0; i < sfields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001361 mirror::ArtField* field = sfields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001362 PrintField(indent2_os, field, field->GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -08001363 }
1364 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001365 } else if (obj->IsArtMethod()) {
1366 mirror::ArtMethod* method = obj->AsArtMethod();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001367 if (method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001368 // TODO: portable dumping.
1369 DCHECK(method->GetNativeGcMap() == nullptr) << PrettyMethod(method);
1370 DCHECK(method->GetMappingTable() == nullptr) << PrettyMethod(method);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001371 bool first_occurrence;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001372 const void* quick_oat_code = state->GetQuickOatCodeBegin(method);
1373 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1374 state->ComputeOatSize(quick_oat_code, &first_occurrence);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001375 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001376 state->stats_.native_to_managed_code_bytes += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001377 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001378 if (quick_oat_code != method->GetEntryPointFromQuickCompiledCode()) {
1379 indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001380 }
Ian Rogers19846512012-02-24 11:42:47 -08001381 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
Jeff Hao88474b42013-10-23 16:24:40 -07001382 method->IsResolutionMethod() || method->IsImtConflictMethod() ||
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001383 method->IsClassInitializer()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -07001384 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001385 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001386 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001387 const DexFile::CodeItem* code_item = method->GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -07001388 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001389 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001390
Elliott Hughesa0e18062012-04-13 15:59:59 -07001391 bool first_occurrence;
Ian Rogers0c7abda2012-09-19 13:33:42 -07001392 size_t gc_map_bytes = state->ComputeOatSize(method->GetNativeGcMap(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001393 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001394 state->stats_.gc_map_bytes += gc_map_bytes;
1395 }
1396
1397 size_t pc_mapping_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001398 state->ComputeOatSize(method->GetMappingTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001399 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001400 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1401 }
1402
1403 size_t vmap_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001404 state->ComputeOatSize(method->GetVmapTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001405 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001406 state->stats_.vmap_table_bytes += vmap_table_bytes;
1407 }
1408
Ian Rogersef7d42f2014-01-06 12:55:46 -08001409 // TODO: portable dumping.
1410 const void* quick_oat_code_begin = state->GetQuickOatCodeBegin(method);
1411 const void* quick_oat_code_end = state->GetQuickOatCodeEnd(method);
1412 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1413 state->ComputeOatSize(quick_oat_code_begin, &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001414 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001415 state->stats_.managed_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001416 if (method->IsConstructor()) {
1417 if (method->IsStatic()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001418 state->stats_.class_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001419 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001420 state->stats_.large_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001421 }
1422 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001423 state->stats_.large_method_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001424 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001425 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001426 state->stats_.managed_code_bytes_ignoring_deduplication += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001427
Ian Rogersef7d42f2014-01-06 12:55:46 -08001428 indent_os << StringPrintf("OAT CODE: %p-%p\n", quick_oat_code_begin, quick_oat_code_end);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001429 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1430 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001431
1432 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Ian Rogersef7d42f2014-01-06 12:55:46 -08001433 vmap_table_bytes + quick_oat_code_size + object_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001434
1435 double expansion =
Ian Rogersef7d42f2014-01-06 12:55:46 -08001436 static_cast<double>(quick_oat_code_size) / static_cast<double>(dex_instruction_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001437 state->stats_.ComputeOutliers(total_size, expansion, method);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001438 }
1439 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001440 std::string temp;
1441 state->stats_.Update(obj_class->GetDescriptor(&temp), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001442 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001443
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001444 std::set<const void*> already_seen_;
1445 // Compute the size of the given data within the oat file and whether this is the first time
1446 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001447 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001448 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001449 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001450 already_seen_.insert(oat_data);
1451 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001452 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001453 }
1454 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001455 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001456
1457 public:
1458 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001459 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001460 size_t file_bytes;
1461
1462 size_t header_bytes;
1463 size_t object_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -07001464 size_t bitmap_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001465 size_t alignment_bytes;
1466
1467 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001468 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001469 size_t managed_to_native_code_bytes;
1470 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001471 size_t class_initializer_code_bytes;
1472 size_t large_initializer_code_bytes;
1473 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001474
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001475 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001476 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001477 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001478
1479 size_t dex_instruction_bytes;
1480
Brian Carlstromea46f952013-07-30 01:26:50 -07001481 std::vector<mirror::ArtMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001482 std::vector<size_t> method_outlier_size;
1483 std::vector<double> method_outlier_expansion;
Ian Rogers700a4022014-05-19 16:49:03 -07001484 std::vector<std::pair<std::string, size_t>> oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001485
1486 explicit Stats()
1487 : oat_file_bytes(0),
1488 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001489 header_bytes(0),
1490 object_bytes(0),
Mathieu Chartier32327092013-08-30 14:04:08 -07001491 bitmap_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001492 alignment_bytes(0),
1493 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001494 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001495 managed_to_native_code_bytes(0),
1496 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001497 class_initializer_code_bytes(0),
1498 large_initializer_code_bytes(0),
1499 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001500 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001501 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001502 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001503 dex_instruction_bytes(0) {}
1504
Elliott Hughesa0e18062012-04-13 15:59:59 -07001505 struct SizeAndCount {
1506 SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1507 size_t bytes;
1508 size_t count;
1509 };
1510 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1511 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001512
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001513 void Update(const char* descriptor, size_t object_bytes) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001514 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1515 if (it != sizes_and_counts.end()) {
1516 it->second.bytes += object_bytes;
1517 it->second.count += 1;
1518 } else {
1519 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1520 }
1521 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001522
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001523 double PercentOfOatBytes(size_t size) {
1524 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1525 }
1526
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001527 double PercentOfFileBytes(size_t size) {
1528 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1529 }
1530
1531 double PercentOfObjectBytes(size_t size) {
1532 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1533 }
1534
Brian Carlstromea46f952013-07-30 01:26:50 -07001535 void ComputeOutliers(size_t total_size, double expansion, mirror::ArtMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001536 method_outlier_size.push_back(total_size);
1537 method_outlier_expansion.push_back(expansion);
1538 method_outlier.push_back(method);
1539 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001540
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001541 void DumpOutliers(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001542 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001543 size_t sum_of_sizes = 0;
1544 size_t sum_of_sizes_squared = 0;
1545 size_t sum_of_expansion = 0;
1546 size_t sum_of_expansion_squared = 0;
1547 size_t n = method_outlier_size.size();
1548 for (size_t i = 0; i < n; i++) {
1549 size_t cur_size = method_outlier_size[i];
1550 sum_of_sizes += cur_size;
1551 sum_of_sizes_squared += cur_size * cur_size;
1552 double cur_expansion = method_outlier_expansion[i];
1553 sum_of_expansion += cur_expansion;
1554 sum_of_expansion_squared += cur_expansion * cur_expansion;
1555 }
1556 size_t size_mean = sum_of_sizes / n;
1557 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1558 double expansion_mean = sum_of_expansion / n;
1559 double expansion_variance =
1560 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1561
1562 // Dump methods whose size is a certain number of standard deviations from the mean
1563 size_t dumped_values = 0;
1564 size_t skipped_values = 0;
1565 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
1566 size_t cur_size_variance = i * i * size_variance;
1567 bool first = true;
1568 for (size_t j = 0; j < n; j++) {
1569 size_t cur_size = method_outlier_size[j];
1570 if (cur_size > size_mean) {
1571 size_t cur_var = cur_size - size_mean;
1572 cur_var = cur_var * cur_var;
1573 if (cur_var > cur_size_variance) {
1574 if (dumped_values > 20) {
1575 if (i == 1) {
1576 skipped_values++;
1577 } else {
1578 i = 2; // jump to counting for 1 standard deviation
1579 break;
1580 }
1581 } else {
1582 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001583 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001584 first = false;
1585 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001586 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07001587 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001588 method_outlier_size[j] = 0; // don't consider this method again
1589 dumped_values++;
1590 }
1591 }
1592 }
1593 }
1594 }
1595 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001596 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001597 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001598 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001599 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001600
1601 // Dump methods whose expansion is a certain number of standard deviations from the mean
1602 dumped_values = 0;
1603 skipped_values = 0;
1604 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
1605 double cur_expansion_variance = i * i * expansion_variance;
1606 bool first = true;
1607 for (size_t j = 0; j < n; j++) {
1608 double cur_expansion = method_outlier_expansion[j];
1609 if (cur_expansion > expansion_mean) {
1610 size_t cur_var = cur_expansion - expansion_mean;
1611 cur_var = cur_var * cur_var;
1612 if (cur_var > cur_expansion_variance) {
1613 if (dumped_values > 20) {
1614 if (i == 1) {
1615 skipped_values++;
1616 } else {
1617 i = 2; // jump to counting for 1 standard deviation
1618 break;
1619 }
1620 } else {
1621 if (first) {
1622 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07001623 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001624 first = false;
1625 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001626 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07001627 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001628 method_outlier_expansion[j] = 0.0; // don't consider this method again
1629 dumped_values++;
1630 }
1631 }
1632 }
1633 }
1634 }
1635 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001636 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001637 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001638 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001639 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001640 }
1641
Ian Rogersb726dcb2012-09-05 08:57:23 -07001642 void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001643 {
1644 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
1645 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1646 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1647 std::ostream indent_os(&indent_filter);
1648 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
1649 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
Mathieu Chartier32327092013-08-30 14:04:08 -07001650 "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n"
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001651 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
1652 header_bytes, PercentOfFileBytes(header_bytes),
1653 object_bytes, PercentOfFileBytes(object_bytes),
Mathieu Chartier32327092013-08-30 14:04:08 -07001654 bitmap_bytes, PercentOfFileBytes(bitmap_bytes),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001655 alignment_bytes, PercentOfFileBytes(alignment_bytes))
1656 << std::flush;
Mathieu Chartier32327092013-08-30 14:04:08 -07001657 CHECK_EQ(file_bytes, bitmap_bytes + header_bytes + object_bytes + alignment_bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001658 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001659
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001660 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001661 size_t object_bytes_total = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001662 for (const auto& sizes_and_count : sizes_and_counts) {
1663 const std::string& descriptor(sizes_and_count.first);
1664 double average = static_cast<double>(sizes_and_count.second.bytes) /
1665 static_cast<double>(sizes_and_count.second.count);
1666 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001667 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07001668 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001669 descriptor.c_str(), sizes_and_count.second.bytes,
1670 sizes_and_count.second.count, average, percent);
1671 object_bytes_total += sizes_and_count.second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001672 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001673 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001674 CHECK_EQ(object_bytes, object_bytes_total);
1675
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001676 os << StringPrintf("oat_file_bytes = %8zd\n"
1677 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1678 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1679 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1680 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1681 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1682 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001683 oat_file_bytes,
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001684 managed_code_bytes,
1685 PercentOfOatBytes(managed_code_bytes),
1686 managed_to_native_code_bytes,
1687 PercentOfOatBytes(managed_to_native_code_bytes),
1688 native_to_managed_code_bytes,
1689 PercentOfOatBytes(native_to_managed_code_bytes),
1690 class_initializer_code_bytes,
1691 PercentOfOatBytes(class_initializer_code_bytes),
1692 large_initializer_code_bytes,
1693 PercentOfOatBytes(large_initializer_code_bytes),
1694 large_method_code_bytes,
1695 PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001696 << "DexFile sizes:\n";
Mathieu Chartier02e25112013-08-14 16:14:24 -07001697 for (const std::pair<std::string, size_t>& oat_dex_file_size : oat_dex_file_sizes) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001698 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001699 oat_dex_file_size.first.c_str(), oat_dex_file_size.second,
1700 PercentOfOatBytes(oat_dex_file_size.second));
Ian Rogers05f28c62012-10-23 18:12:13 -07001701 }
1702
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001703 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1704 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1705 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001706 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
1707 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
1708 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001709 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001710
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001711 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
1712 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001713 static_cast<double>(managed_code_bytes) /
1714 static_cast<double>(dex_instruction_bytes),
Elliott Hughesc073b072012-05-24 19:29:17 -07001715 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07001716 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001717 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001718
1719 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001720 }
1721 } stats_;
1722
1723 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07001724 enum {
1725 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1726 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1727 kLargeConstructorDexBytes = 4000,
1728 // Number of bytes for a method to be considered large. Based on the 4000 basic block
1729 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1730 kLargeMethodDexBytes = 16000
1731 };
Ian Rogers700a4022014-05-19 16:49:03 -07001732 std::unique_ptr<OatDumper> oat_dumper_;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001733 std::ostream* os_;
Ian Rogers1d54e732013-05-02 21:10:01 -07001734 gc::space::ImageSpace& image_space_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001735 const ImageHeader& image_header_;
Dave Allison404f59f2014-02-24 11:10:01 -08001736 bool dump_raw_mapping_table_;
1737 bool dump_raw_gc_map_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07001738
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001739 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001740};
1741
Elliott Hughes72395bf2012-04-24 13:45:26 -07001742static int oatdump(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -07001743 InitLogging(argv);
Elliott Hughes72395bf2012-04-24 13:45:26 -07001744
Brian Carlstrom78128a62011-09-15 17:21:19 -07001745 // Skip over argv[0].
1746 argv++;
1747 argc--;
1748
1749 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001750 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001751 usage();
1752 }
1753
Brian Carlstromaded5f72011-10-07 17:15:04 -07001754 const char* oat_filename = NULL;
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001755 const char* image_location = NULL;
1756 const char* boot_image_location = NULL;
1757 InstructionSet instruction_set = kRuntimeISA;
Logan Chien0cc6ab62012-03-20 22:57:52 +08001758 std::string elf_filename_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001759 std::ostream* os = &std::cout;
Ian Rogers700a4022014-05-19 16:49:03 -07001760 std::unique_ptr<std::ofstream> out;
Andreas Gampe54fc26c2014-09-04 21:47:42 -07001761 std::string output_name;
Dave Allison404f59f2014-02-24 11:10:01 -08001762 bool dump_raw_mapping_table = false;
1763 bool dump_raw_gc_map = false;
Andreas Gampe54fc26c2014-09-04 21:47:42 -07001764 bool symbolize = false;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001765
1766 for (int i = 0; i < argc; i++) {
1767 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -08001768 if (option.starts_with("--oat-file=")) {
1769 oat_filename = option.substr(strlen("--oat-file=")).data();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001770 } else if (option.starts_with("--image=")) {
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001771 image_location = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001772 } else if (option.starts_with("--boot-image=")) {
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001773 boot_image_location = option.substr(strlen("--boot-image=")).data();
1774 } else if (option.starts_with("--instruction-set=")) {
1775 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data();
1776 if (instruction_set_str == "arm") {
1777 instruction_set = kThumb2;
1778 } else if (instruction_set_str == "arm64") {
1779 instruction_set = kArm64;
1780 } else if (instruction_set_str == "mips") {
1781 instruction_set = kMips;
1782 } else if (instruction_set_str == "x86") {
1783 instruction_set = kX86;
1784 } else if (instruction_set_str == "x86_64") {
1785 instruction_set = kX86_64;
1786 }
Dave Allison404f59f2014-02-24 11:10:01 -08001787 } else if (option.starts_with("--dump:")) {
1788 if (option == "--dump:raw_mapping_table") {
1789 dump_raw_mapping_table = true;
1790 } else if (option == "--dump:raw_gc_map") {
1791 dump_raw_gc_map = true;
1792 } else {
1793 fprintf(stderr, "Unknown argument %s\n", option.data());
1794 usage();
1795 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001796 } else if (option.starts_with("--output=")) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -07001797 output_name = option.substr(strlen("--output=")).ToString();
1798 const char* filename = output_name.c_str();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001799 out.reset(new std::ofstream(filename));
1800 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001801 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001802 usage();
1803 }
1804 os = out.get();
Andreas Gampe54fc26c2014-09-04 21:47:42 -07001805 } else if (option.starts_with("--symbolize=")) {
1806 oat_filename = option.substr(strlen("--symbolize=")).data();
1807 symbolize = true;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001808 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001809 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001810 usage();
1811 }
1812 }
1813
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001814 if (image_location == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001815 fprintf(stderr, "Either --image or --oat must be specified\n");
1816 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001817 }
1818
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001819 if (image_location != NULL && oat_filename != NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001820 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
1821 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001822 }
1823
1824 if (oat_filename != NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001825 std::string error_msg;
Logan Chien0c717dd2012-03-28 18:31:07 +08001826 OatFile* oat_file =
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001827 OatFile::Open(oat_filename, oat_filename, NULL, false, &error_msg);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001828 if (oat_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001829 fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001830 return EXIT_FAILURE;
1831 }
Andreas Gampe54fc26c2014-09-04 21:47:42 -07001832 if (symbolize) {
1833 OatSymbolizer oat_symbolizer(oat_file, output_name);
1834 if (!oat_symbolizer.Init()) {
1835 fprintf(stderr, "Failed to initialize symbolizer\n");
1836 return EXIT_FAILURE;
1837 }
1838 if (!oat_symbolizer.Symbolize()) {
1839 fprintf(stderr, "Failed to symbolize\n");
1840 return EXIT_FAILURE;
1841 }
1842 } else {
1843 OatDumper oat_dumper(*oat_file, dump_raw_mapping_table, dump_raw_gc_map);
1844 oat_dumper.Dump(*os);
1845 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001846 return EXIT_SUCCESS;
1847 }
1848
Ian Rogerse63db272014-07-15 15:36:11 -07001849 RuntimeOptions options;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001850 std::string image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001851 std::string oat_option;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001852 std::string boot_image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001853 std::string boot_oat_option;
Brian Carlstrom6c871802013-07-17 14:25:35 -07001854
1855 // We are more like a compiler than a run-time. We don't want to execute code.
Brian Carlstromc0a1b182014-03-04 23:19:06 -08001856 NoopCompilerCallbacks callbacks;
1857 options.push_back(std::make_pair("compilercallbacks", &callbacks));
Brian Carlstrom6c871802013-07-17 14:25:35 -07001858
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001859 if (boot_image_location != NULL) {
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001860 boot_image_option += "-Ximage:";
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001861 boot_image_option += boot_image_location;
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001862 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -07001863 }
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001864 if (image_location != NULL) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001865 image_option += "-Ximage:";
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001866 image_option += image_location;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001867 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
1868 }
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001869 options.push_back(
1870 std::make_pair("imageinstructionset",
1871 reinterpret_cast<const void*>(GetInstructionSetString(instruction_set))));
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001872
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001873 if (!Runtime::Create(options, false)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001874 fprintf(stderr, "Failed to create runtime\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001875 return EXIT_FAILURE;
1876 }
Ian Rogers700a4022014-05-19 16:49:03 -07001877 std::unique_ptr<Runtime> runtime(Runtime::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001878 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
Ian Rogersb9beb2e2014-05-09 16:57:40 -07001879 // give it away now and then switch to a more manageable ScopedObjectAccess.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001880 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
1881 ScopedObjectAccess soa(Thread::Current());
Ian Rogers1d54e732013-05-02 21:10:01 -07001882 gc::Heap* heap = Runtime::Current()->GetHeap();
1883 gc::space::ImageSpace* image_space = heap->GetImageSpace();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001884 CHECK(image_space != NULL);
1885 const ImageHeader& image_header = image_space->GetImageHeader();
1886 if (!image_header.IsValid()) {
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001887 fprintf(stderr, "Invalid image header %s\n", image_location);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001888 return EXIT_FAILURE;
1889 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001890 ImageDumper image_dumper(os, *image_space, image_header,
1891 dump_raw_mapping_table, dump_raw_gc_map);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001892 image_dumper.Dump();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001893 return EXIT_SUCCESS;
1894}
1895
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001896} // namespace art
Brian Carlstrom78128a62011-09-15 17:21:19 -07001897
1898int main(int argc, char** argv) {
1899 return art::oatdump(argc, argv);
1900}