Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 16 | |
| 17 | #include <stdio.h> |
| 18 | #include <stdlib.h> |
| 19 | |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 20 | #include <fstream> |
| 21 | #include <iostream> |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 22 | #include <map> |
| 23 | #include <set> |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 24 | #include <string> |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 25 | #include <unordered_map> |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 26 | #include <unordered_set> |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 27 | #include <vector> |
| 28 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 29 | #include "android-base/stringprintf.h" |
Andreas Gampe | 9186ced | 2016-12-12 14:28:21 -0800 | [diff] [blame] | 30 | #include "android-base/strings.h" |
| 31 | |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 32 | #include "arch/instruction_set_features.h" |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 33 | #include "art_field-inl.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 34 | #include "art_method-inl.h" |
Vladimir Marko | 10c1356 | 2015-11-25 14:33:36 +0000 | [diff] [blame] | 35 | #include "base/stl_util.h" |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 36 | #include "base/unix_file/fd_file.h" |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 37 | #include "class_linker.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 38 | #include "class_linker-inl.h" |
David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 39 | #include "debug/elf_debug_writer.h" |
| 40 | #include "debug/method_debug_info.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 41 | #include "dex_file-inl.h" |
Christina Wadsworth | bc233ac | 2016-06-20 15:01:32 -0700 | [diff] [blame] | 42 | #include "dex_instruction-inl.h" |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 43 | #include "disassembler.h" |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 44 | #include "elf_builder.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 45 | #include "gc/space/image_space.h" |
| 46 | #include "gc/space/large_object_space.h" |
| 47 | #include "gc/space/space-inl.h" |
Mathieu Chartier | 4a26f17 | 2016-01-26 14:26:18 -0800 | [diff] [blame] | 48 | #include "image-inl.h" |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 49 | #include "imtable-inl.h" |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 50 | #include "indenter.h" |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 51 | #include "interpreter/unstarted_runtime.h" |
Vladimir Marko | 131980f | 2015-12-03 18:29:23 +0000 | [diff] [blame] | 52 | #include "linker/buffered_output_stream.h" |
| 53 | #include "linker/file_output_stream.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 54 | #include "mirror/array-inl.h" |
| 55 | #include "mirror/class-inl.h" |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 56 | #include "mirror/dex_cache-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 57 | #include "mirror/object-inl.h" |
| 58 | #include "mirror/object_array-inl.h" |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 59 | #include "oat.h" |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 60 | #include "oat_file-inl.h" |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 61 | #include "oat_file_manager.h" |
Elliott Hughes | e5448b5 | 2012-01-18 16:44:06 -0800 | [diff] [blame] | 62 | #include "os.h" |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 63 | #include "safe_map.h" |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 64 | #include "scoped_thread_state_change-inl.h" |
Nicolas Geoffray | 9c05578 | 2016-07-14 09:24:30 +0000 | [diff] [blame] | 65 | #include "ScopedLocalRef.h" |
Andreas Gampe | 513061a | 2017-06-01 09:17:34 -0700 | [diff] [blame] | 66 | #include "stack.h" |
Mathieu Chartier | dc00f18 | 2016-07-14 10:10:44 -0700 | [diff] [blame] | 67 | #include "stack_map.h" |
| 68 | #include "string_reference.h" |
Mathieu Chartier | c22c59e | 2014-02-24 15:16:06 -0800 | [diff] [blame] | 69 | #include "thread_list.h" |
Andreas Gampe | 2ba8895 | 2016-04-29 17:52:07 -0700 | [diff] [blame] | 70 | #include "type_lookup_table.h" |
Nicolas Geoffray | 4acefd3 | 2016-10-24 13:14:58 +0100 | [diff] [blame] | 71 | #include "vdex_file.h" |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 72 | #include "verifier/method_verifier.h" |
Nicolas Geoffray | e70dd56 | 2016-10-30 21:03:35 +0000 | [diff] [blame] | 73 | #include "verifier/verifier_deps.h" |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 74 | #include "well_known_classes.h" |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 75 | |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 76 | #include <sys/stat.h> |
| 77 | #include "cmdline.h" |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 78 | |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 79 | namespace art { |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 80 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 81 | using android::base::StringPrintf; |
| 82 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 83 | const char* image_methods_descriptions_[] = { |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 84 | "kResolutionMethod", |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 85 | "kImtConflictMethod", |
Mathieu Chartier | 2d2621a | 2014-10-23 16:48:06 -0700 | [diff] [blame] | 86 | "kImtUnimplementedMethod", |
Vladimir Marko | fd36f1f | 2016-08-03 18:49:58 +0100 | [diff] [blame] | 87 | "kSaveAllCalleeSavesMethod", |
| 88 | "kSaveRefsOnlyMethod", |
| 89 | "kSaveRefsAndArgsMethod", |
Vladimir Marko | 952dbb1 | 2016-07-28 12:01:51 +0100 | [diff] [blame] | 90 | "kSaveEverythingMethod", |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 91 | }; |
| 92 | |
| 93 | const char* image_roots_descriptions_[] = { |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 94 | "kDexCaches", |
Brian Carlstrom | 34f426c | 2011-10-04 12:58:02 -0700 | [diff] [blame] | 95 | "kClassRoots", |
Vladimir Marko | eca3eda | 2016-11-09 16:26:44 +0000 | [diff] [blame] | 96 | "kClassLoader", |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 97 | }; |
| 98 | |
Mathieu Chartier | ac8f439 | 2015-08-27 13:54:20 -0700 | [diff] [blame] | 99 | // Map is so that we don't allocate multiple dex files for the same OatDexFile. |
| 100 | static std::map<const OatFile::OatDexFile*, |
| 101 | std::unique_ptr<const DexFile>> opened_dex_files; |
| 102 | |
| 103 | const DexFile* OpenDexFile(const OatFile::OatDexFile* oat_dex_file, std::string* error_msg) { |
| 104 | DCHECK(oat_dex_file != nullptr); |
| 105 | auto it = opened_dex_files.find(oat_dex_file); |
| 106 | if (it != opened_dex_files.end()) { |
| 107 | return it->second.get(); |
| 108 | } |
| 109 | const DexFile* ret = oat_dex_file->OpenDexFile(error_msg).release(); |
| 110 | opened_dex_files.emplace(oat_dex_file, std::unique_ptr<const DexFile>(ret)); |
| 111 | return ret; |
| 112 | } |
| 113 | |
Andreas Gampe | 2d8614b | 2016-03-07 16:31:34 -0800 | [diff] [blame] | 114 | template <typename ElfTypes> |
David Srbecky | bc90fd0 | 2015-04-22 19:40:27 +0100 | [diff] [blame] | 115 | class OatSymbolizer FINAL { |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 116 | public: |
David Srbecky | 2fdd03c | 2016-03-10 15:32:37 +0000 | [diff] [blame] | 117 | OatSymbolizer(const OatFile* oat_file, const std::string& output_name, bool no_bits) : |
| 118 | oat_file_(oat_file), |
| 119 | builder_(nullptr), |
| 120 | output_name_(output_name.empty() ? "symbolized.oat" : output_name), |
| 121 | no_bits_(no_bits) { |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 122 | } |
| 123 | |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 124 | bool Symbolize() { |
David Srbecky | 6d8c8f0 | 2015-10-26 10:57:09 +0000 | [diff] [blame] | 125 | const InstructionSet isa = oat_file_->GetOatHeader().GetInstructionSet(); |
Andreas Gampe | 0415b4e | 2015-01-06 15:17:07 -0800 | [diff] [blame] | 126 | std::unique_ptr<const InstructionSetFeatures> features = InstructionSetFeatures::FromBitmap( |
David Srbecky | 5d81120 | 2016-03-08 13:21:22 +0000 | [diff] [blame] | 127 | isa, oat_file_->GetOatHeader().GetInstructionSetFeaturesBitmap()); |
David Srbecky | 6d8c8f0 | 2015-10-26 10:57:09 +0000 | [diff] [blame] | 128 | |
Andreas Gampe | 08c277c | 2017-04-26 22:22:15 -0700 | [diff] [blame] | 129 | std::unique_ptr<File> elf_file(OS::CreateEmptyFile(output_name_.c_str())); |
| 130 | if (elf_file == nullptr) { |
| 131 | return false; |
| 132 | } |
Andreas Gampe | 8bdda5a | 2017-06-08 15:30:36 -0700 | [diff] [blame] | 133 | std::unique_ptr<BufferedOutputStream> output_stream = |
| 134 | std::make_unique<BufferedOutputStream>(std::make_unique<FileOutputStream>(elf_file.get())); |
Andreas Gampe | 0415b4e | 2015-01-06 15:17:07 -0800 | [diff] [blame] | 135 | builder_.reset(new ElfBuilder<ElfTypes>(isa, features.get(), output_stream.get())); |
David Srbecky | 6d8c8f0 | 2015-10-26 10:57:09 +0000 | [diff] [blame] | 136 | |
| 137 | builder_->Start(); |
| 138 | |
| 139 | auto* rodata = builder_->GetRoData(); |
| 140 | auto* text = builder_->GetText(); |
| 141 | auto* bss = builder_->GetBss(); |
David Srbecky | 6d8c8f0 | 2015-10-26 10:57:09 +0000 | [diff] [blame] | 142 | |
David Srbecky | 6d8c8f0 | 2015-10-26 10:57:09 +0000 | [diff] [blame] | 143 | const uint8_t* rodata_begin = oat_file_->Begin(); |
| 144 | const size_t rodata_size = oat_file_->GetOatHeader().GetExecutableOffset(); |
David Srbecky | 2fdd03c | 2016-03-10 15:32:37 +0000 | [diff] [blame] | 145 | if (no_bits_) { |
| 146 | rodata->WriteNoBitsSection(rodata_size); |
| 147 | } else { |
| 148 | rodata->Start(); |
| 149 | rodata->WriteFully(rodata_begin, rodata_size); |
| 150 | rodata->End(); |
| 151 | } |
David Srbecky | 6d8c8f0 | 2015-10-26 10:57:09 +0000 | [diff] [blame] | 152 | |
David Srbecky | 6d8c8f0 | 2015-10-26 10:57:09 +0000 | [diff] [blame] | 153 | const uint8_t* text_begin = oat_file_->Begin() + rodata_size; |
| 154 | const size_t text_size = oat_file_->End() - text_begin; |
David Srbecky | 2fdd03c | 2016-03-10 15:32:37 +0000 | [diff] [blame] | 155 | if (no_bits_) { |
| 156 | text->WriteNoBitsSection(text_size); |
| 157 | } else { |
| 158 | text->Start(); |
| 159 | text->WriteFully(text_begin, text_size); |
| 160 | text->End(); |
| 161 | } |
David Srbecky | 6d8c8f0 | 2015-10-26 10:57:09 +0000 | [diff] [blame] | 162 | |
| 163 | if (oat_file_->BssSize() != 0) { |
David Srbecky | 5b1c2ca | 2016-01-25 17:32:41 +0000 | [diff] [blame] | 164 | bss->WriteNoBitsSection(oat_file_->BssSize()); |
David Srbecky | 6d8c8f0 | 2015-10-26 10:57:09 +0000 | [diff] [blame] | 165 | } |
| 166 | |
Douglas Leung | 316a218 | 2015-09-17 15:26:25 -0700 | [diff] [blame] | 167 | if (isa == kMips || isa == kMips64) { |
| 168 | builder_->WriteMIPSabiflagsSection(); |
| 169 | } |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 170 | builder_->PrepareDynamicSection(elf_file->GetPath(), |
| 171 | rodata_size, |
| 172 | text_size, |
| 173 | oat_file_->BssSize(), |
Vladimir Marko | 0eb882b | 2017-05-15 13:39:18 +0100 | [diff] [blame] | 174 | oat_file_->BssMethodsOffset(), |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 175 | oat_file_->BssRootsOffset()); |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 176 | builder_->WriteDynamicSection(); |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 177 | |
David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 178 | Walk(); |
| 179 | for (const auto& trampoline : debug::MakeTrampolineInfos(oat_file_->GetOatHeader())) { |
| 180 | method_debug_infos_.push_back(trampoline); |
| 181 | } |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 182 | |
David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 183 | debug::WriteDebugInfo(builder_.get(), |
| 184 | ArrayRef<const debug::MethodDebugInfo>(method_debug_infos_), |
| 185 | dwarf::DW_DEBUG_FRAME_FORMAT, |
| 186 | true /* write_oat_patches */); |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 187 | |
David Srbecky | 6d8c8f0 | 2015-10-26 10:57:09 +0000 | [diff] [blame] | 188 | builder_->End(); |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 189 | |
Andreas Gampe | 08c277c | 2017-04-26 22:22:15 -0700 | [diff] [blame] | 190 | bool ret_value = builder_->Good(); |
| 191 | |
| 192 | builder_.reset(); |
| 193 | output_stream.reset(); |
| 194 | |
| 195 | if (elf_file->FlushCloseOrErase() != 0) { |
| 196 | return false; |
| 197 | } |
| 198 | elf_file.reset(); |
| 199 | |
| 200 | return ret_value; |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 201 | } |
| 202 | |
David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 203 | void Walk() { |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 204 | std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file_->GetOatDexFiles(); |
| 205 | for (size_t i = 0; i < oat_dex_files.size(); i++) { |
| 206 | const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i]; |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 207 | CHECK(oat_dex_file != nullptr); |
David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 208 | WalkOatDexFile(oat_dex_file); |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 209 | } |
| 210 | } |
| 211 | |
David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 212 | void WalkOatDexFile(const OatFile::OatDexFile* oat_dex_file) { |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 213 | std::string error_msg; |
Mathieu Chartier | ac8f439 | 2015-08-27 13:54:20 -0700 | [diff] [blame] | 214 | const DexFile* const dex_file = OpenDexFile(oat_dex_file, &error_msg); |
| 215 | if (dex_file == nullptr) { |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 216 | return; |
| 217 | } |
| 218 | for (size_t class_def_index = 0; |
| 219 | class_def_index < dex_file->NumClassDefs(); |
| 220 | class_def_index++) { |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 221 | const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); |
| 222 | OatClassType type = oat_class.GetType(); |
| 223 | switch (type) { |
| 224 | case kOatClassAllCompiled: |
| 225 | case kOatClassSomeCompiled: |
David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 226 | WalkOatClass(oat_class, *dex_file, class_def_index); |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 227 | break; |
| 228 | |
| 229 | case kOatClassNoneCompiled: |
| 230 | case kOatClassMax: |
| 231 | // Ignore. |
| 232 | break; |
| 233 | } |
| 234 | } |
| 235 | } |
| 236 | |
David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 237 | void WalkOatClass(const OatFile::OatClass& oat_class, |
| 238 | const DexFile& dex_file, |
| 239 | uint32_t class_def_index) { |
| 240 | const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index); |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 241 | const uint8_t* class_data = dex_file.GetClassData(class_def); |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 242 | if (class_data == nullptr) { // empty class such as a marker interface? |
| 243 | return; |
| 244 | } |
| 245 | // Note: even if this is an interface or a native class, we still have to walk it, as there |
| 246 | // might be a static initializer. |
| 247 | ClassDataItemIterator it(dex_file, class_data); |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 248 | uint32_t class_method_idx = 0; |
Mathieu Chartier | e17cf24 | 2017-06-19 11:05:51 -0700 | [diff] [blame^] | 249 | it.SkipAllFields(); |
David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 250 | for (; it.HasNextDirectMethod() || it.HasNextVirtualMethod(); it.Next()) { |
| 251 | WalkOatMethod(oat_class.GetOatMethod(class_method_idx++), |
| 252 | dex_file, |
| 253 | class_def_index, |
| 254 | it.GetMemberIndex(), |
| 255 | it.GetMethodCodeItem(), |
| 256 | it.GetMethodAccessFlags()); |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 257 | } |
| 258 | DCHECK(!it.HasNext()); |
| 259 | } |
| 260 | |
David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 261 | void WalkOatMethod(const OatFile::OatMethod& oat_method, |
| 262 | const DexFile& dex_file, |
| 263 | uint32_t class_def_index, |
| 264 | uint32_t dex_method_index, |
| 265 | const DexFile::CodeItem* code_item, |
| 266 | uint32_t method_access_flags) { |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 267 | if ((method_access_flags & kAccAbstract) != 0) { |
| 268 | // Abstract method, no code. |
| 269 | return; |
| 270 | } |
David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 271 | const OatHeader& oat_header = oat_file_->GetOatHeader(); |
| 272 | const OatQuickMethodHeader* method_header = oat_method.GetOatQuickMethodHeader(); |
| 273 | if (method_header == nullptr || method_header->GetCodeSize() == 0) { |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 274 | // No code. |
| 275 | return; |
| 276 | } |
| 277 | |
David Srbecky | a1b4c5f | 2016-03-31 18:17:59 +0100 | [diff] [blame] | 278 | uint32_t entry_point = oat_method.GetCodeOffset() - oat_header.GetExecutableOffset(); |
| 279 | // Clear Thumb2 bit. |
| 280 | const void* code_address = EntryPointToCodePointer(reinterpret_cast<void*>(entry_point)); |
| 281 | |
David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 282 | debug::MethodDebugInfo info = debug::MethodDebugInfo(); |
| 283 | info.trampoline_name = nullptr; |
| 284 | info.dex_file = &dex_file; |
| 285 | info.class_def_index = class_def_index; |
| 286 | info.dex_method_index = dex_method_index; |
| 287 | info.access_flags = method_access_flags; |
| 288 | info.code_item = code_item; |
| 289 | info.isa = oat_header.GetInstructionSet(); |
| 290 | info.deduped = !seen_offsets_.insert(oat_method.GetCodeOffset()).second; |
| 291 | info.is_native_debuggable = oat_header.IsNativeDebuggable(); |
| 292 | info.is_optimized = method_header->IsOptimized(); |
| 293 | info.is_code_address_text_relative = true; |
David Srbecky | a1b4c5f | 2016-03-31 18:17:59 +0100 | [diff] [blame] | 294 | info.code_address = reinterpret_cast<uintptr_t>(code_address); |
David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 295 | info.code_size = method_header->GetCodeSize(); |
| 296 | info.frame_size_in_bytes = method_header->GetFrameSizeInBytes(); |
| 297 | info.code_info = info.is_optimized ? method_header->GetOptimizedCodeInfoPtr() : nullptr; |
| 298 | info.cfi = ArrayRef<uint8_t>(); |
| 299 | method_debug_infos_.push_back(info); |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 300 | } |
| 301 | |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 302 | private: |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 303 | const OatFile* oat_file_; |
Andreas Gampe | 2d8614b | 2016-03-07 16:31:34 -0800 | [diff] [blame] | 304 | std::unique_ptr<ElfBuilder<ElfTypes> > builder_; |
David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 305 | std::vector<debug::MethodDebugInfo> method_debug_infos_; |
| 306 | std::unordered_set<uint32_t> seen_offsets_; |
Ian Rogers | 0279ebb | 2014-10-08 17:27:48 -0700 | [diff] [blame] | 307 | const std::string output_name_; |
David Srbecky | 2fdd03c | 2016-03-10 15:32:37 +0000 | [diff] [blame] | 308 | bool no_bits_; |
Andreas Gampe | 54fc26c | 2014-09-04 21:47:42 -0700 | [diff] [blame] | 309 | }; |
| 310 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 311 | class OatDumperOptions { |
| 312 | public: |
Vladimir Marko | 9d07e3d | 2016-03-31 12:02:28 +0100 | [diff] [blame] | 313 | OatDumperOptions(bool dump_vmap, |
Roland Levillain | f2650d1 | 2015-05-28 14:53:28 +0100 | [diff] [blame] | 314 | bool dump_code_info_stack_maps, |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 315 | bool disassemble_code, |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 316 | bool absolute_addresses, |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 317 | const char* class_filter, |
| 318 | const char* method_filter, |
| 319 | bool list_classes, |
| 320 | bool list_methods, |
David Brazdil | c03d7b6 | 2016-03-02 12:18:03 +0000 | [diff] [blame] | 321 | bool dump_header_only, |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 322 | const char* export_dex_location, |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 323 | const char* app_image, |
| 324 | const char* app_oat, |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 325 | uint32_t addr2instr) |
Vladimir Marko | 9d07e3d | 2016-03-31 12:02:28 +0100 | [diff] [blame] | 326 | : dump_vmap_(dump_vmap), |
Roland Levillain | f2650d1 | 2015-05-28 14:53:28 +0100 | [diff] [blame] | 327 | dump_code_info_stack_maps_(dump_code_info_stack_maps), |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 328 | disassemble_code_(disassemble_code), |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 329 | absolute_addresses_(absolute_addresses), |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 330 | class_filter_(class_filter), |
Nicolas Geoffray | 3fcd220 | 2014-11-12 18:02:36 +0000 | [diff] [blame] | 331 | method_filter_(method_filter), |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 332 | list_classes_(list_classes), |
| 333 | list_methods_(list_methods), |
David Brazdil | c03d7b6 | 2016-03-02 12:18:03 +0000 | [diff] [blame] | 334 | dump_header_only_(dump_header_only), |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 335 | export_dex_location_(export_dex_location), |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 336 | app_image_(app_image), |
| 337 | app_oat_(app_oat), |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 338 | addr2instr_(addr2instr), |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 339 | class_loader_(nullptr) {} |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 340 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 341 | const bool dump_vmap_; |
Roland Levillain | f2650d1 | 2015-05-28 14:53:28 +0100 | [diff] [blame] | 342 | const bool dump_code_info_stack_maps_; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 343 | const bool disassemble_code_; |
| 344 | const bool absolute_addresses_; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 345 | const char* const class_filter_; |
Nicolas Geoffray | 3fcd220 | 2014-11-12 18:02:36 +0000 | [diff] [blame] | 346 | const char* const method_filter_; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 347 | const bool list_classes_; |
| 348 | const bool list_methods_; |
David Brazdil | c03d7b6 | 2016-03-02 12:18:03 +0000 | [diff] [blame] | 349 | const bool dump_header_only_; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 350 | const char* const export_dex_location_; |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 351 | const char* const app_image_; |
| 352 | const char* const app_oat_; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 353 | uint32_t addr2instr_; |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 354 | Handle<mirror::ClassLoader>* class_loader_; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 355 | }; |
| 356 | |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 357 | class OatDumper { |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 358 | public: |
Roland Levillain | 3887c46 | 2015-08-12 18:15:42 +0100 | [diff] [blame] | 359 | OatDumper(const OatFile& oat_file, const OatDumperOptions& options) |
Nicolas Geoffray | 9583fbc | 2014-02-28 15:21:07 +0000 | [diff] [blame] | 360 | : oat_file_(oat_file), |
Elliott Hughes | a72ec82 | 2012-03-05 17:12:22 -0800 | [diff] [blame] | 361 | oat_dex_files_(oat_file.GetOatDexFiles()), |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 362 | options_(options), |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 363 | resolved_addr2instr_(0), |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 364 | instruction_set_(oat_file_.GetOatHeader().GetInstructionSet()), |
| 365 | disassembler_(Disassembler::Create(instruction_set_, |
Andreas Gampe | 372f3a3 | 2016-08-19 10:49:06 -0700 | [diff] [blame] | 366 | new DisassemblerOptions( |
| 367 | options_.absolute_addresses_, |
| 368 | oat_file.Begin(), |
| 369 | oat_file.End(), |
| 370 | true /* can_read_literals_ */, |
| 371 | Is64BitInstructionSet(instruction_set_) |
| 372 | ? &Thread::DumpThreadOffset<PointerSize::k64> |
| 373 | : &Thread::DumpThreadOffset<PointerSize::k32>))) { |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 374 | CHECK(options_.class_loader_ != nullptr); |
| 375 | CHECK(options_.class_filter_ != nullptr); |
| 376 | CHECK(options_.method_filter_ != nullptr); |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 377 | AddAllOffsets(); |
| 378 | } |
| 379 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 380 | ~OatDumper() { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 381 | delete disassembler_; |
| 382 | } |
| 383 | |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 384 | InstructionSet GetInstructionSet() { |
| 385 | return instruction_set_; |
| 386 | } |
| 387 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 388 | bool Dump(std::ostream& os) { |
| 389 | bool success = true; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 390 | const OatHeader& oat_header = oat_file_.GetOatHeader(); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 391 | |
| 392 | os << "MAGIC:\n"; |
| 393 | os << oat_header.GetMagic() << "\n\n"; |
| 394 | |
Jeff Hao | 4b07a6e | 2016-01-15 12:50:44 -0800 | [diff] [blame] | 395 | os << "LOCATION:\n"; |
| 396 | os << oat_file_.GetLocation() << "\n\n"; |
| 397 | |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 398 | os << "CHECKSUM:\n"; |
Elliott Hughes | ed2adb6 | 2012-02-29 14:41:01 -0800 | [diff] [blame] | 399 | os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum()); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 400 | |
Elliott Hughes | a72ec82 | 2012-03-05 17:12:22 -0800 | [diff] [blame] | 401 | os << "INSTRUCTION SET:\n"; |
| 402 | os << oat_header.GetInstructionSet() << "\n\n"; |
| 403 | |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 404 | { |
| 405 | std::unique_ptr<const InstructionSetFeatures> features( |
| 406 | InstructionSetFeatures::FromBitmap(oat_header.GetInstructionSet(), |
| 407 | oat_header.GetInstructionSetFeaturesBitmap())); |
| 408 | os << "INSTRUCTION SET FEATURES:\n"; |
| 409 | os << features->GetFeatureString() << "\n\n"; |
| 410 | } |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 411 | |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 412 | os << "DEX FILE COUNT:\n"; |
| 413 | os << oat_header.GetDexFileCount() << "\n\n"; |
| 414 | |
Brian Carlstrom | 2ec6520 | 2014-03-03 15:16:37 -0800 | [diff] [blame] | 415 | #define DUMP_OAT_HEADER_OFFSET(label, offset) \ |
| 416 | os << label " OFFSET:\n"; \ |
| 417 | os << StringPrintf("0x%08x", oat_header.offset()); \ |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 418 | if (oat_header.offset() != 0 && options_.absolute_addresses_) { \ |
Brian Carlstrom | 2ec6520 | 2014-03-03 15:16:37 -0800 | [diff] [blame] | 419 | os << StringPrintf(" (%p)", oat_file_.Begin() + oat_header.offset()); \ |
| 420 | } \ |
| 421 | os << StringPrintf("\n\n"); |
| 422 | |
| 423 | DUMP_OAT_HEADER_OFFSET("EXECUTABLE", GetExecutableOffset); |
| 424 | DUMP_OAT_HEADER_OFFSET("INTERPRETER TO INTERPRETER BRIDGE", |
| 425 | GetInterpreterToInterpreterBridgeOffset); |
| 426 | DUMP_OAT_HEADER_OFFSET("INTERPRETER TO COMPILED CODE BRIDGE", |
| 427 | GetInterpreterToCompiledCodeBridgeOffset); |
| 428 | DUMP_OAT_HEADER_OFFSET("JNI DLSYM LOOKUP", |
| 429 | GetJniDlsymLookupOffset); |
Brian Carlstrom | 2ec6520 | 2014-03-03 15:16:37 -0800 | [diff] [blame] | 430 | DUMP_OAT_HEADER_OFFSET("QUICK GENERIC JNI TRAMPOLINE", |
| 431 | GetQuickGenericJniTrampolineOffset); |
| 432 | DUMP_OAT_HEADER_OFFSET("QUICK IMT CONFLICT TRAMPOLINE", |
| 433 | GetQuickImtConflictTrampolineOffset); |
| 434 | DUMP_OAT_HEADER_OFFSET("QUICK RESOLUTION TRAMPOLINE", |
| 435 | GetQuickResolutionTrampolineOffset); |
| 436 | DUMP_OAT_HEADER_OFFSET("QUICK TO INTERPRETER BRIDGE", |
| 437 | GetQuickToInterpreterBridgeOffset); |
| 438 | #undef DUMP_OAT_HEADER_OFFSET |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 439 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 440 | os << "IMAGE PATCH DELTA:\n"; |
| 441 | os << StringPrintf("%d (0x%08x)\n\n", |
| 442 | oat_header.GetImagePatchDelta(), |
| 443 | oat_header.GetImagePatchDelta()); |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 444 | |
Brian Carlstrom | 28db012 | 2012-10-18 16:20:41 -0700 | [diff] [blame] | 445 | os << "IMAGE FILE LOCATION OAT CHECKSUM:\n"; |
| 446 | os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum()); |
| 447 | |
| 448 | os << "IMAGE FILE LOCATION OAT BEGIN:\n"; |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 449 | os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin()); |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 450 | |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 451 | // Print the key-value store. |
| 452 | { |
| 453 | os << "KEY VALUE STORE:\n"; |
| 454 | size_t index = 0; |
| 455 | const char* key; |
| 456 | const char* value; |
| 457 | while (oat_header.GetStoreKeyValuePairByIndex(index, &key, &value)) { |
| 458 | os << key << " = " << value << "\n"; |
| 459 | index++; |
| 460 | } |
| 461 | os << "\n"; |
| 462 | } |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 463 | |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 464 | if (options_.absolute_addresses_) { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 465 | os << "BEGIN:\n"; |
| 466 | os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n"; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 467 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 468 | os << "END:\n"; |
| 469 | os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n"; |
| 470 | } |
| 471 | |
| 472 | os << "SIZE:\n"; |
| 473 | os << oat_file_.Size() << "\n\n"; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 474 | |
| 475 | os << std::flush; |
| 476 | |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 477 | // If set, adjust relative address to be searched |
| 478 | if (options_.addr2instr_ != 0) { |
| 479 | resolved_addr2instr_ = options_.addr2instr_ + oat_header.GetExecutableOffset(); |
| 480 | os << "SEARCH ADDRESS (executable offset + input):\n"; |
| 481 | os << StringPrintf("0x%08x\n\n", resolved_addr2instr_); |
| 482 | } |
| 483 | |
Mathieu Chartier | dc00f18 | 2016-07-14 10:10:44 -0700 | [diff] [blame] | 484 | // Dumping the dex file overview is compact enough to do even if header only. |
| 485 | DexFileData cumulative; |
| 486 | for (size_t i = 0; i < oat_dex_files_.size(); i++) { |
| 487 | const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; |
| 488 | CHECK(oat_dex_file != nullptr); |
| 489 | std::string error_msg; |
| 490 | const DexFile* const dex_file = OpenDexFile(oat_dex_file, &error_msg); |
| 491 | if (dex_file == nullptr) { |
| 492 | os << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation() << "': " |
| 493 | << error_msg; |
| 494 | continue; |
| 495 | } |
| 496 | DexFileData data(*dex_file); |
| 497 | os << "Dex file data for " << dex_file->GetLocation() << "\n"; |
| 498 | data.Dump(os); |
| 499 | os << "\n"; |
| 500 | cumulative.Add(data); |
| 501 | } |
| 502 | os << "Cumulative dex file data\n"; |
| 503 | cumulative.Dump(os); |
| 504 | os << "\n"; |
| 505 | |
David Brazdil | c03d7b6 | 2016-03-02 12:18:03 +0000 | [diff] [blame] | 506 | if (!options_.dump_header_only_) { |
Nicolas Geoffray | e70dd56 | 2016-10-30 21:03:35 +0000 | [diff] [blame] | 507 | VariableIndentationOutputStream vios(&os); |
| 508 | VdexFile::Header vdex_header = oat_file_.GetVdexFile()->GetHeader(); |
| 509 | if (vdex_header.IsValid()) { |
| 510 | std::string error_msg; |
| 511 | std::vector<const DexFile*> dex_files; |
| 512 | for (size_t i = 0; i < oat_dex_files_.size(); i++) { |
| 513 | const DexFile* dex_file = OpenDexFile(oat_dex_files_[i], &error_msg); |
| 514 | if (dex_file == nullptr) { |
| 515 | os << "Error opening dex file: " << error_msg << std::endl; |
| 516 | return false; |
| 517 | } |
| 518 | dex_files.push_back(dex_file); |
| 519 | } |
| 520 | verifier::VerifierDeps deps(dex_files, oat_file_.GetVdexFile()->GetVerifierDepsData()); |
| 521 | deps.Dump(&vios); |
| 522 | } else { |
| 523 | os << "UNRECOGNIZED vdex file, magic " |
| 524 | << vdex_header.GetMagic() |
| 525 | << ", version " |
| 526 | << vdex_header.GetVersion() |
| 527 | << "\n"; |
| 528 | } |
David Brazdil | c03d7b6 | 2016-03-02 12:18:03 +0000 | [diff] [blame] | 529 | for (size_t i = 0; i < oat_dex_files_.size(); i++) { |
| 530 | const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; |
| 531 | CHECK(oat_dex_file != nullptr); |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 532 | |
David Brazdil | c03d7b6 | 2016-03-02 12:18:03 +0000 | [diff] [blame] | 533 | // If file export selected skip file analysis |
| 534 | if (options_.export_dex_location_) { |
| 535 | if (!ExportDexFile(os, *oat_dex_file)) { |
| 536 | success = false; |
| 537 | } |
| 538 | } else { |
| 539 | if (!DumpOatDexFile(os, *oat_dex_file)) { |
| 540 | success = false; |
| 541 | } |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 542 | } |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 543 | } |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 544 | } |
David Brazdil | c03d7b6 | 2016-03-02 12:18:03 +0000 | [diff] [blame] | 545 | |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 546 | { |
| 547 | os << "OAT FILE STATS:\n"; |
| 548 | VariableIndentationOutputStream vios(&os); |
| 549 | stats_.Dump(vios); |
| 550 | } |
| 551 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 552 | os << std::flush; |
| 553 | return success; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 554 | } |
| 555 | |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 556 | size_t ComputeSize(const void* oat_data) { |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 557 | if (reinterpret_cast<const uint8_t*>(oat_data) < oat_file_.Begin() || |
| 558 | reinterpret_cast<const uint8_t*>(oat_data) > oat_file_.End()) { |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 559 | return 0; // Address not in oat file |
| 560 | } |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 561 | uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) - |
| 562 | reinterpret_cast<uintptr_t>(oat_file_.Begin()); |
| 563 | auto it = offsets_.upper_bound(begin_offset); |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 564 | CHECK(it != offsets_.end()); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 565 | uintptr_t end_offset = *it; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 566 | return end_offset - begin_offset; |
| 567 | } |
| 568 | |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 569 | InstructionSet GetOatInstructionSet() { |
Brian Carlstrom | f8bbb84 | 2012-03-14 03:01:42 -0700 | [diff] [blame] | 570 | return oat_file_.GetOatHeader().GetInstructionSet(); |
| 571 | } |
| 572 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 573 | const void* GetQuickOatCode(ArtMethod* m) REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 574 | for (size_t i = 0; i < oat_dex_files_.size(); i++) { |
| 575 | const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 576 | CHECK(oat_dex_file != nullptr); |
| 577 | std::string error_msg; |
Mathieu Chartier | ac8f439 | 2015-08-27 13:54:20 -0700 | [diff] [blame] | 578 | const DexFile* const dex_file = OpenDexFile(oat_dex_file, &error_msg); |
| 579 | if (dex_file == nullptr) { |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 580 | LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation() |
| 581 | << "': " << error_msg; |
| 582 | } else { |
Mathieu Chartier | e7c9a8c | 2014-11-06 16:35:45 -0800 | [diff] [blame] | 583 | const char* descriptor = m->GetDeclaringClassDescriptor(); |
Ian Rogers | 8b2c0b9 | 2013-09-19 02:56:49 -0700 | [diff] [blame] | 584 | const DexFile::ClassDef* class_def = |
David Sehr | 9aa352e | 2016-09-15 18:13:52 -0700 | [diff] [blame] | 585 | OatDexFile::FindClassDef(*dex_file, descriptor, ComputeModifiedUtf8Hash(descriptor)); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 586 | if (class_def != nullptr) { |
Ian Rogers | 8b2c0b9 | 2013-09-19 02:56:49 -0700 | [diff] [blame] | 587 | uint16_t class_def_index = dex_file->GetIndexForClassDef(*class_def); |
Vladimir Marko | d3c5beb | 2014-04-11 16:32:51 +0100 | [diff] [blame] | 588 | const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 589 | size_t method_index = m->GetMethodIndex(); |
Vladimir Marko | d3c5beb | 2014-04-11 16:32:51 +0100 | [diff] [blame] | 590 | return oat_class.GetOatMethod(method_index).GetQuickCode(); |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 591 | } |
| 592 | } |
| 593 | } |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 594 | return nullptr; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 595 | } |
| 596 | |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 597 | struct Stats { |
| 598 | enum ByteKind { |
| 599 | kByteKindCode, |
| 600 | kByteKindQuickMethodHeader, |
| 601 | kByteKindCodeInfoLocationCatalog, |
| 602 | kByteKindCodeInfoDexRegisterMap, |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 603 | kByteKindCodeInfoEncoding, |
Mathieu Chartier | d776ff0 | 2017-01-17 09:32:18 -0800 | [diff] [blame] | 604 | kByteKindCodeInfoInvokeInfo, |
David Srbecky | 45aa598 | 2016-03-18 02:15:09 +0000 | [diff] [blame] | 605 | kByteKindCodeInfoStackMasks, |
Mathieu Chartier | 1a20b68 | 2017-01-31 14:25:16 -0800 | [diff] [blame] | 606 | kByteKindCodeInfoRegisterMasks, |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 607 | kByteKindStackMapNativePc, |
| 608 | kByteKindStackMapDexPc, |
| 609 | kByteKindStackMapDexRegisterMap, |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 610 | kByteKindStackMapInlineInfoIndex, |
Mathieu Chartier | 1a20b68 | 2017-01-31 14:25:16 -0800 | [diff] [blame] | 611 | kByteKindStackMapRegisterMaskIndex, |
David Srbecky | 45aa598 | 2016-03-18 02:15:09 +0000 | [diff] [blame] | 612 | kByteKindStackMapStackMaskIndex, |
Mathieu Chartier | cbcedbf | 2017-03-12 22:24:50 -0700 | [diff] [blame] | 613 | kByteKindInlineInfoMethodIndexIdx, |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 614 | kByteKindInlineInfoDexPc, |
| 615 | kByteKindInlineInfoExtraData, |
| 616 | kByteKindInlineInfoDexRegisterMap, |
| 617 | kByteKindInlineInfoIsLast, |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 618 | kByteKindCount, |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 619 | // Special ranges for std::accumulate convenience. |
| 620 | kByteKindStackMapFirst = kByteKindStackMapNativePc, |
David Srbecky | 45aa598 | 2016-03-18 02:15:09 +0000 | [diff] [blame] | 621 | kByteKindStackMapLast = kByteKindStackMapStackMaskIndex, |
Mathieu Chartier | cbcedbf | 2017-03-12 22:24:50 -0700 | [diff] [blame] | 622 | kByteKindInlineInfoFirst = kByteKindInlineInfoMethodIndexIdx, |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 623 | kByteKindInlineInfoLast = kByteKindInlineInfoIsLast, |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 624 | }; |
| 625 | int64_t bits[kByteKindCount] = {}; |
| 626 | // Since code has deduplication, seen tracks already seen pointers to avoid double counting |
| 627 | // deduplicated code and tables. |
| 628 | std::unordered_set<const void*> seen; |
| 629 | |
| 630 | // Returns true if it was newly added. |
| 631 | bool AddBitsIfUnique(ByteKind kind, int64_t count, const void* address) { |
| 632 | if (seen.insert(address).second == true) { |
| 633 | // True means the address was not already in the set. |
| 634 | AddBits(kind, count); |
| 635 | return true; |
| 636 | } |
| 637 | return false; |
| 638 | } |
| 639 | |
| 640 | void AddBits(ByteKind kind, int64_t count) { |
| 641 | bits[kind] += count; |
| 642 | } |
| 643 | |
| 644 | void Dump(VariableIndentationOutputStream& os) { |
| 645 | const int64_t sum = std::accumulate(bits, bits + kByteKindCount, 0u); |
| 646 | os.Stream() << "Dumping cumulative use of " << sum / kBitsPerByte << " accounted bytes\n"; |
| 647 | if (sum > 0) { |
Mathieu Chartier | 1a20b68 | 2017-01-31 14:25:16 -0800 | [diff] [blame] | 648 | Dump(os, "Code ", bits[kByteKindCode], sum); |
| 649 | Dump(os, "QuickMethodHeader ", bits[kByteKindQuickMethodHeader], sum); |
| 650 | Dump(os, "CodeInfoEncoding ", bits[kByteKindCodeInfoEncoding], sum); |
| 651 | Dump(os, "CodeInfoLocationCatalog ", bits[kByteKindCodeInfoLocationCatalog], sum); |
| 652 | Dump(os, "CodeInfoDexRegisterMap ", bits[kByteKindCodeInfoDexRegisterMap], sum); |
Mathieu Chartier | 1a20b68 | 2017-01-31 14:25:16 -0800 | [diff] [blame] | 653 | Dump(os, "CodeInfoStackMasks ", bits[kByteKindCodeInfoStackMasks], sum); |
| 654 | Dump(os, "CodeInfoRegisterMasks ", bits[kByteKindCodeInfoRegisterMasks], sum); |
Mathieu Chartier | d776ff0 | 2017-01-17 09:32:18 -0800 | [diff] [blame] | 655 | Dump(os, "CodeInfoInvokeInfo ", bits[kByteKindCodeInfoInvokeInfo], sum); |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 656 | // Stack map section. |
| 657 | const int64_t stack_map_bits = std::accumulate(bits + kByteKindStackMapFirst, |
| 658 | bits + kByteKindStackMapLast + 1, |
| 659 | 0u); |
Mathieu Chartier | 1a20b68 | 2017-01-31 14:25:16 -0800 | [diff] [blame] | 660 | Dump(os, "CodeInfoStackMap ", stack_map_bits, sum); |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 661 | { |
| 662 | ScopedIndentation indent1(&os); |
| 663 | Dump(os, |
Mathieu Chartier | 1a20b68 | 2017-01-31 14:25:16 -0800 | [diff] [blame] | 664 | "StackMapNativePc ", |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 665 | bits[kByteKindStackMapNativePc], |
| 666 | stack_map_bits, |
| 667 | "stack map"); |
| 668 | Dump(os, |
Mathieu Chartier | 1a20b68 | 2017-01-31 14:25:16 -0800 | [diff] [blame] | 669 | "StackMapDexPcEncoding ", |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 670 | bits[kByteKindStackMapDexPc], |
| 671 | stack_map_bits, |
| 672 | "stack map"); |
| 673 | Dump(os, |
Mathieu Chartier | 1a20b68 | 2017-01-31 14:25:16 -0800 | [diff] [blame] | 674 | "StackMapDexRegisterMap ", |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 675 | bits[kByteKindStackMapDexRegisterMap], |
| 676 | stack_map_bits, |
| 677 | "stack map"); |
| 678 | Dump(os, |
Mathieu Chartier | 697dc66 | 2017-02-08 16:56:48 -0800 | [diff] [blame] | 679 | "StackMapInlineInfoIndex ", |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 680 | bits[kByteKindStackMapInlineInfoIndex], |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 681 | stack_map_bits, |
| 682 | "stack map"); |
| 683 | Dump(os, |
Mathieu Chartier | 1a20b68 | 2017-01-31 14:25:16 -0800 | [diff] [blame] | 684 | "StackMapRegisterMaskIndex ", |
| 685 | bits[kByteKindStackMapRegisterMaskIndex], |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 686 | stack_map_bits, |
| 687 | "stack map"); |
| 688 | Dump(os, |
Mathieu Chartier | 1a20b68 | 2017-01-31 14:25:16 -0800 | [diff] [blame] | 689 | "StackMapStackMaskIndex ", |
David Srbecky | 45aa598 | 2016-03-18 02:15:09 +0000 | [diff] [blame] | 690 | bits[kByteKindStackMapStackMaskIndex], |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 691 | stack_map_bits, |
| 692 | "stack map"); |
| 693 | } |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 694 | // Inline info section. |
| 695 | const int64_t inline_info_bits = std::accumulate(bits + kByteKindInlineInfoFirst, |
| 696 | bits + kByteKindInlineInfoLast + 1, |
| 697 | 0u); |
| 698 | Dump(os, "CodeInfoInlineInfo ", inline_info_bits, sum); |
| 699 | { |
| 700 | ScopedIndentation indent1(&os); |
| 701 | Dump(os, |
Mathieu Chartier | cbcedbf | 2017-03-12 22:24:50 -0700 | [diff] [blame] | 702 | "InlineInfoMethodIndexIdx ", |
| 703 | bits[kByteKindInlineInfoMethodIndexIdx], |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 704 | inline_info_bits, |
| 705 | "inline info"); |
| 706 | Dump(os, |
| 707 | "InlineInfoDexPc ", |
| 708 | bits[kByteKindStackMapDexPc], |
| 709 | inline_info_bits, |
| 710 | "inline info"); |
| 711 | Dump(os, |
| 712 | "InlineInfoExtraData ", |
| 713 | bits[kByteKindInlineInfoExtraData], |
| 714 | inline_info_bits, |
| 715 | "inline info"); |
| 716 | Dump(os, |
| 717 | "InlineInfoDexRegisterMap ", |
| 718 | bits[kByteKindInlineInfoDexRegisterMap], |
| 719 | inline_info_bits, |
| 720 | "inline info"); |
| 721 | Dump(os, |
| 722 | "InlineInfoIsLast ", |
| 723 | bits[kByteKindInlineInfoIsLast], |
| 724 | inline_info_bits, |
| 725 | "inline info"); |
| 726 | } |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 727 | } |
| 728 | os.Stream() << "\n" << std::flush; |
| 729 | } |
| 730 | |
| 731 | private: |
| 732 | void Dump(VariableIndentationOutputStream& os, |
| 733 | const char* name, |
| 734 | int64_t size, |
| 735 | int64_t total, |
| 736 | const char* sum_of = "total") { |
| 737 | const double percent = (static_cast<double>(size) / static_cast<double>(total)) * 100; |
| 738 | os.Stream() << StringPrintf("%s = %8" PRId64 " (%2.0f%% of %s)\n", |
| 739 | name, |
| 740 | size / kBitsPerByte, |
| 741 | percent, |
| 742 | sum_of); |
| 743 | } |
| 744 | }; |
| 745 | |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 746 | private: |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 747 | void AddAllOffsets() { |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 748 | // We don't know the length of the code for each method, but we need to know where to stop |
| 749 | // when disassembling. What we do know is that a region of code will be followed by some other |
| 750 | // region, so if we keep a sorted sequence of the start of each region, we can infer the length |
| 751 | // of a piece of code by using upper_bound to find the start of the next region. |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 752 | for (size_t i = 0; i < oat_dex_files_.size(); i++) { |
| 753 | const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 754 | CHECK(oat_dex_file != nullptr); |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 755 | std::string error_msg; |
Mathieu Chartier | ac8f439 | 2015-08-27 13:54:20 -0700 | [diff] [blame] | 756 | const DexFile* const dex_file = OpenDexFile(oat_dex_file, &error_msg); |
| 757 | if (dex_file == nullptr) { |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 758 | LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation() |
| 759 | << "': " << error_msg; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 760 | continue; |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 761 | } |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 762 | offsets_.insert(reinterpret_cast<uintptr_t>(&dex_file->GetHeader())); |
Brian Carlstrom | 2ec6520 | 2014-03-03 15:16:37 -0800 | [diff] [blame] | 763 | for (size_t class_def_index = 0; |
| 764 | class_def_index < dex_file->NumClassDefs(); |
| 765 | class_def_index++) { |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 766 | const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index); |
Vladimir Marko | d3c5beb | 2014-04-11 16:32:51 +0100 | [diff] [blame] | 767 | const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 768 | const uint8_t* class_data = dex_file->GetClassData(class_def); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 769 | if (class_data != nullptr) { |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 770 | ClassDataItemIterator it(*dex_file, class_data); |
Mathieu Chartier | e17cf24 | 2017-06-19 11:05:51 -0700 | [diff] [blame^] | 771 | it.SkipAllFields(); |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 772 | uint32_t class_method_index = 0; |
| 773 | while (it.HasNextDirectMethod()) { |
Vladimir Marko | d3c5beb | 2014-04-11 16:32:51 +0100 | [diff] [blame] | 774 | AddOffsets(oat_class.GetOatMethod(class_method_index++)); |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 775 | it.Next(); |
| 776 | } |
| 777 | while (it.HasNextVirtualMethod()) { |
Vladimir Marko | d3c5beb | 2014-04-11 16:32:51 +0100 | [diff] [blame] | 778 | AddOffsets(oat_class.GetOatMethod(class_method_index++)); |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 779 | it.Next(); |
| 780 | } |
| 781 | } |
| 782 | } |
| 783 | } |
| 784 | |
| 785 | // If the last thing in the file is code for a method, there won't be an offset for the "next" |
| 786 | // thing. Instead of having a special case in the upper_bound code, let's just add an entry |
| 787 | // for the end of the file. |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 788 | offsets_.insert(oat_file_.Size()); |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 789 | } |
| 790 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 791 | static uint32_t AlignCodeOffset(uint32_t maybe_thumb_offset) { |
| 792 | return maybe_thumb_offset & ~0x1; // TODO: Make this Thumb2 specific. |
| 793 | } |
| 794 | |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 795 | void AddOffsets(const OatFile::OatMethod& oat_method) { |
Brian Carlstrom | 95ba0dc | 2012-03-05 22:06:14 -0800 | [diff] [blame] | 796 | uint32_t code_offset = oat_method.GetCodeOffset(); |
| 797 | if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) { |
| 798 | code_offset &= ~0x1; |
| 799 | } |
| 800 | offsets_.insert(code_offset); |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 801 | offsets_.insert(oat_method.GetVmapTableOffset()); |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 802 | } |
| 803 | |
Mathieu Chartier | dc00f18 | 2016-07-14 10:10:44 -0700 | [diff] [blame] | 804 | // Dex file data, may be for multiple different dex files. |
| 805 | class DexFileData { |
| 806 | public: |
| 807 | DexFileData() {} |
| 808 | |
| 809 | explicit DexFileData(const DexFile& dex_file) |
| 810 | : num_string_ids_(dex_file.NumStringIds()), |
| 811 | num_method_ids_(dex_file.NumMethodIds()), |
| 812 | num_field_ids_(dex_file.NumFieldIds()), |
| 813 | num_type_ids_(dex_file.NumTypeIds()), |
| 814 | num_class_defs_(dex_file.NumClassDefs()) { |
| 815 | for (size_t class_def_index = 0; class_def_index < num_class_defs_; ++class_def_index) { |
| 816 | const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index); |
| 817 | WalkClass(dex_file, class_def); |
| 818 | } |
| 819 | } |
| 820 | |
| 821 | void Add(const DexFileData& other) { |
| 822 | AddAll(unique_string_ids_from_code_, other.unique_string_ids_from_code_); |
| 823 | num_string_ids_from_code_ += other.num_string_ids_from_code_; |
| 824 | AddAll(dex_code_item_ptrs_, other.dex_code_item_ptrs_); |
| 825 | dex_code_bytes_ += other.dex_code_bytes_; |
| 826 | num_string_ids_ += other.num_string_ids_; |
| 827 | num_method_ids_ += other.num_method_ids_; |
| 828 | num_field_ids_ += other.num_field_ids_; |
| 829 | num_type_ids_ += other.num_type_ids_; |
| 830 | num_class_defs_ += other.num_class_defs_; |
| 831 | } |
| 832 | |
| 833 | void Dump(std::ostream& os) { |
| 834 | os << "Num string ids: " << num_string_ids_ << "\n"; |
| 835 | os << "Num method ids: " << num_method_ids_ << "\n"; |
| 836 | os << "Num field ids: " << num_field_ids_ << "\n"; |
| 837 | os << "Num type ids: " << num_type_ids_ << "\n"; |
| 838 | os << "Num class defs: " << num_class_defs_ << "\n"; |
| 839 | os << "Unique strings loaded from dex code: " << unique_string_ids_from_code_.size() << "\n"; |
| 840 | os << "Total strings loaded from dex code: " << num_string_ids_from_code_ << "\n"; |
| 841 | os << "Number of unique dex code items: " << dex_code_item_ptrs_.size() << "\n"; |
| 842 | os << "Total number of dex code bytes: " << dex_code_bytes_ << "\n"; |
| 843 | } |
| 844 | |
| 845 | private: |
Andreas Gampe | 9186ced | 2016-12-12 14:28:21 -0800 | [diff] [blame] | 846 | // All of the elements from one container to another. |
| 847 | template <typename Dest, typename Src> |
| 848 | static void AddAll(Dest& dest, const Src& src) { |
| 849 | dest.insert(src.begin(), src.end()); |
| 850 | } |
| 851 | |
Mathieu Chartier | dc00f18 | 2016-07-14 10:10:44 -0700 | [diff] [blame] | 852 | void WalkClass(const DexFile& dex_file, const DexFile::ClassDef& class_def) { |
| 853 | const uint8_t* class_data = dex_file.GetClassData(class_def); |
| 854 | if (class_data == nullptr) { // empty class such as a marker interface? |
| 855 | return; |
| 856 | } |
| 857 | ClassDataItemIterator it(dex_file, class_data); |
Mathieu Chartier | e17cf24 | 2017-06-19 11:05:51 -0700 | [diff] [blame^] | 858 | it.SkipAllFields(); |
Mathieu Chartier | dc00f18 | 2016-07-14 10:10:44 -0700 | [diff] [blame] | 859 | while (it.HasNextDirectMethod()) { |
| 860 | WalkCodeItem(dex_file, it.GetMethodCodeItem()); |
| 861 | it.Next(); |
| 862 | } |
| 863 | while (it.HasNextVirtualMethod()) { |
| 864 | WalkCodeItem(dex_file, it.GetMethodCodeItem()); |
| 865 | it.Next(); |
| 866 | } |
| 867 | DCHECK(!it.HasNext()); |
| 868 | } |
| 869 | |
| 870 | void WalkCodeItem(const DexFile& dex_file, const DexFile::CodeItem* code_item) { |
| 871 | if (code_item == nullptr) { |
| 872 | return; |
| 873 | } |
| 874 | const size_t code_item_size = code_item->insns_size_in_code_units_; |
| 875 | const uint16_t* code_ptr = code_item->insns_; |
| 876 | const uint16_t* code_end = code_item->insns_ + code_item_size; |
| 877 | |
| 878 | // If we inserted a new dex code item pointer, add to total code bytes. |
| 879 | if (dex_code_item_ptrs_.insert(code_ptr).second) { |
| 880 | dex_code_bytes_ += code_item_size * sizeof(code_ptr[0]); |
| 881 | } |
| 882 | |
| 883 | while (code_ptr < code_end) { |
| 884 | const Instruction* inst = Instruction::At(code_ptr); |
| 885 | switch (inst->Opcode()) { |
| 886 | case Instruction::CONST_STRING: { |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 887 | const dex::StringIndex string_index(inst->VRegB_21c()); |
Mathieu Chartier | dc00f18 | 2016-07-14 10:10:44 -0700 | [diff] [blame] | 888 | unique_string_ids_from_code_.insert(StringReference(&dex_file, string_index)); |
| 889 | ++num_string_ids_from_code_; |
| 890 | break; |
| 891 | } |
| 892 | case Instruction::CONST_STRING_JUMBO: { |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 893 | const dex::StringIndex string_index(inst->VRegB_31c()); |
Mathieu Chartier | dc00f18 | 2016-07-14 10:10:44 -0700 | [diff] [blame] | 894 | unique_string_ids_from_code_.insert(StringReference(&dex_file, string_index)); |
| 895 | ++num_string_ids_from_code_; |
| 896 | break; |
| 897 | } |
| 898 | default: |
| 899 | break; |
| 900 | } |
| 901 | |
| 902 | code_ptr += inst->SizeInCodeUnits(); |
| 903 | } |
| 904 | } |
| 905 | |
| 906 | // Unique string ids loaded from dex code. |
| 907 | std::set<StringReference, StringReferenceComparator> unique_string_ids_from_code_; |
| 908 | |
| 909 | // Total string ids loaded from dex code. |
| 910 | size_t num_string_ids_from_code_ = 0; |
| 911 | |
| 912 | // Unique code pointers. |
| 913 | std::set<const void*> dex_code_item_ptrs_; |
| 914 | |
| 915 | // Total "unique" dex code bytes. |
| 916 | size_t dex_code_bytes_ = 0; |
| 917 | |
| 918 | // Other dex ids. |
| 919 | size_t num_string_ids_ = 0; |
| 920 | size_t num_method_ids_ = 0; |
| 921 | size_t num_field_ids_ = 0; |
| 922 | size_t num_type_ids_ = 0; |
| 923 | size_t num_class_defs_ = 0; |
| 924 | }; |
| 925 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 926 | bool DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) { |
| 927 | bool success = true; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 928 | bool stop_analysis = false; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 929 | os << "OatDexFile:\n"; |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 930 | os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str()); |
Elliott Hughes | ed2adb6 | 2012-02-29 14:41:01 -0800 | [diff] [blame] | 931 | os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum()); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 932 | |
Andreas Gampe | 2ba8895 | 2016-04-29 17:52:07 -0700 | [diff] [blame] | 933 | const uint8_t* const oat_file_begin = oat_dex_file.GetOatFile()->Begin(); |
David Brazdil | 7b49e6c | 2016-09-01 11:06:18 +0100 | [diff] [blame] | 934 | const uint8_t* const vdex_file_begin = oat_dex_file.GetOatFile()->DexBegin(); |
| 935 | |
| 936 | // Print data range of the dex file embedded inside the corresponding vdex file. |
Andreas Gampe | 2ba8895 | 2016-04-29 17:52:07 -0700 | [diff] [blame] | 937 | const uint8_t* const dex_file_pointer = oat_dex_file.GetDexFilePointer(); |
David Brazdil | 7b49e6c | 2016-09-01 11:06:18 +0100 | [diff] [blame] | 938 | uint32_t dex_offset = dchecked_integral_cast<uint32_t>(dex_file_pointer - vdex_file_begin); |
Andreas Gampe | 2ba8895 | 2016-04-29 17:52:07 -0700 | [diff] [blame] | 939 | os << StringPrintf("dex-file: 0x%08x..0x%08x\n", |
| 940 | dex_offset, |
| 941 | dchecked_integral_cast<uint32_t>(dex_offset + oat_dex_file.FileSize() - 1)); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 942 | |
Andreas Gampe | 2ba8895 | 2016-04-29 17:52:07 -0700 | [diff] [blame] | 943 | // Create the dex file early. A lot of print-out things depend on it. |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 944 | std::string error_msg; |
Mathieu Chartier | ac8f439 | 2015-08-27 13:54:20 -0700 | [diff] [blame] | 945 | const DexFile* const dex_file = OpenDexFile(&oat_dex_file, &error_msg); |
| 946 | if (dex_file == nullptr) { |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 947 | os << "NOT FOUND: " << error_msg << "\n\n"; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 948 | os << std::flush; |
| 949 | return false; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 950 | } |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 951 | |
Andreas Gampe | 2ba8895 | 2016-04-29 17:52:07 -0700 | [diff] [blame] | 952 | // Print lookup table, if it exists. |
| 953 | if (oat_dex_file.GetLookupTableData() != nullptr) { |
| 954 | uint32_t table_offset = dchecked_integral_cast<uint32_t>( |
| 955 | oat_dex_file.GetLookupTableData() - oat_file_begin); |
David Sehr | 9aa352e | 2016-09-15 18:13:52 -0700 | [diff] [blame] | 956 | uint32_t table_size = TypeLookupTable::RawDataLength(dex_file->NumClassDefs()); |
Andreas Gampe | 2ba8895 | 2016-04-29 17:52:07 -0700 | [diff] [blame] | 957 | os << StringPrintf("type-table: 0x%08x..0x%08x\n", |
| 958 | table_offset, |
| 959 | table_offset + table_size - 1); |
| 960 | } |
| 961 | |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 962 | VariableIndentationOutputStream vios(&os); |
| 963 | ScopedIndentation indent1(&vios); |
Brian Carlstrom | 2ec6520 | 2014-03-03 15:16:37 -0800 | [diff] [blame] | 964 | for (size_t class_def_index = 0; |
| 965 | class_def_index < dex_file->NumClassDefs(); |
| 966 | class_def_index++) { |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 967 | const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index); |
| 968 | const char* descriptor = dex_file->GetClassDescriptor(class_def); |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 969 | |
| 970 | // TODO: Support regex |
| 971 | if (DescriptorToDot(descriptor).find(options_.class_filter_) == std::string::npos) { |
| 972 | continue; |
| 973 | } |
| 974 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 975 | uint32_t oat_class_offset = oat_dex_file.GetOatClassOffset(class_def_index); |
Vladimir Marko | d3c5beb | 2014-04-11 16:32:51 +0100 | [diff] [blame] | 976 | const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 977 | os << StringPrintf("%zd: %s (offset=0x%08x) (type_idx=%d)", |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 978 | class_def_index, descriptor, oat_class_offset, class_def.class_idx_.index_) |
Vladimir Marko | d3c5beb | 2014-04-11 16:32:51 +0100 | [diff] [blame] | 979 | << " (" << oat_class.GetStatus() << ")" |
| 980 | << " (" << oat_class.GetType() << ")\n"; |
| 981 | // TODO: include bitmap here if type is kOatClassSomeCompiled? |
Mathieu Chartier | dc00f18 | 2016-07-14 10:10:44 -0700 | [diff] [blame] | 982 | if (options_.list_classes_) { |
| 983 | continue; |
| 984 | } |
| 985 | if (!DumpOatClass(&vios, oat_class, *dex_file, class_def, &stop_analysis)) { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 986 | success = false; |
| 987 | } |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 988 | if (stop_analysis) { |
| 989 | os << std::flush; |
| 990 | return success; |
| 991 | } |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 992 | } |
Mathieu Chartier | dc00f18 | 2016-07-14 10:10:44 -0700 | [diff] [blame] | 993 | os << "\n"; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 994 | os << std::flush; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 995 | return success; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 996 | } |
| 997 | |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 998 | bool ExportDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) { |
| 999 | std::string error_msg; |
| 1000 | std::string dex_file_location = oat_dex_file.GetDexFileLocation(); |
| 1001 | |
Mathieu Chartier | ac8f439 | 2015-08-27 13:54:20 -0700 | [diff] [blame] | 1002 | const DexFile* const dex_file = OpenDexFile(&oat_dex_file, &error_msg); |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1003 | if (dex_file == nullptr) { |
| 1004 | os << "Failed to open dex file '" << dex_file_location << "': " << error_msg; |
| 1005 | return false; |
| 1006 | } |
| 1007 | size_t fsize = oat_dex_file.FileSize(); |
| 1008 | |
| 1009 | // Some quick checks just in case |
| 1010 | if (fsize == 0 || fsize < sizeof(DexFile::Header)) { |
| 1011 | os << "Invalid dex file\n"; |
| 1012 | return false; |
| 1013 | } |
| 1014 | |
| 1015 | // Verify output directory exists |
| 1016 | if (!OS::DirectoryExists(options_.export_dex_location_)) { |
| 1017 | // TODO: Extend OS::DirectoryExists if symlink support is required |
| 1018 | os << options_.export_dex_location_ << " output directory not found or symlink\n"; |
| 1019 | return false; |
| 1020 | } |
| 1021 | |
| 1022 | // Beautify path names |
| 1023 | if (dex_file_location.size() > PATH_MAX || dex_file_location.size() <= 0) { |
| 1024 | return false; |
| 1025 | } |
| 1026 | |
| 1027 | std::string dex_orig_name; |
| 1028 | size_t dex_orig_pos = dex_file_location.rfind('/'); |
| 1029 | if (dex_orig_pos == std::string::npos) |
| 1030 | dex_orig_name = dex_file_location; |
| 1031 | else |
| 1032 | dex_orig_name = dex_file_location.substr(dex_orig_pos + 1); |
| 1033 | |
| 1034 | // A more elegant approach to efficiently name user installed apps is welcome |
Andreas Gampe | f812d8c | 2017-02-17 10:19:44 -0800 | [diff] [blame] | 1035 | if (dex_orig_name.size() == 8 && |
| 1036 | dex_orig_name.compare("base.apk") == 0 && |
| 1037 | dex_orig_pos != std::string::npos) { |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1038 | dex_file_location.erase(dex_orig_pos, strlen("base.apk") + 1); |
| 1039 | size_t apk_orig_pos = dex_file_location.rfind('/'); |
| 1040 | if (apk_orig_pos != std::string::npos) { |
| 1041 | dex_orig_name = dex_file_location.substr(++apk_orig_pos); |
| 1042 | } |
| 1043 | } |
| 1044 | |
| 1045 | std::string out_dex_path(options_.export_dex_location_); |
| 1046 | if (out_dex_path.back() != '/') { |
| 1047 | out_dex_path.append("/"); |
| 1048 | } |
| 1049 | out_dex_path.append(dex_orig_name); |
| 1050 | out_dex_path.append("_export.dex"); |
| 1051 | if (out_dex_path.length() > PATH_MAX) { |
| 1052 | return false; |
| 1053 | } |
| 1054 | |
| 1055 | std::unique_ptr<File> file(OS::CreateEmptyFile(out_dex_path.c_str())); |
| 1056 | if (file.get() == nullptr) { |
| 1057 | os << "Failed to open output dex file " << out_dex_path; |
| 1058 | return false; |
| 1059 | } |
| 1060 | |
| 1061 | if (!file->WriteFully(dex_file->Begin(), fsize)) { |
| 1062 | os << "Failed to write dex file"; |
| 1063 | file->Erase(); |
| 1064 | return false; |
| 1065 | } |
| 1066 | |
| 1067 | if (file->FlushCloseOrErase() != 0) { |
| 1068 | os << "Flush and close failed"; |
| 1069 | return false; |
| 1070 | } |
| 1071 | |
| 1072 | os << StringPrintf("Dex file exported at %s (%zd bytes)\n", out_dex_path.c_str(), fsize); |
| 1073 | os << std::flush; |
| 1074 | |
| 1075 | return true; |
| 1076 | } |
| 1077 | |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1078 | bool DumpOatClass(VariableIndentationOutputStream* vios, |
| 1079 | const OatFile::OatClass& oat_class, const DexFile& dex_file, |
Mathieu Chartier | dc00f18 | 2016-07-14 10:10:44 -0700 | [diff] [blame] | 1080 | const DexFile::ClassDef& class_def, bool* stop_analysis) { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1081 | bool success = true; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1082 | bool addr_found = false; |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 1083 | const uint8_t* class_data = dex_file.GetClassData(class_def); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1084 | if (class_data == nullptr) { // empty class such as a marker interface? |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1085 | vios->Stream() << std::flush; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1086 | return success; |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 1087 | } |
| 1088 | ClassDataItemIterator it(dex_file, class_data); |
Mathieu Chartier | e17cf24 | 2017-06-19 11:05:51 -0700 | [diff] [blame^] | 1089 | it.SkipAllFields(); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1090 | uint32_t class_method_index = 0; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1091 | while (it.HasNextDirectMethod()) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1092 | if (!DumpOatMethod(vios, class_def, class_method_index, oat_class, dex_file, |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1093 | it.GetMemberIndex(), it.GetMethodCodeItem(), |
Mathieu Chartier | dc00f18 | 2016-07-14 10:10:44 -0700 | [diff] [blame] | 1094 | it.GetRawMemberAccessFlags(), &addr_found)) { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1095 | success = false; |
| 1096 | } |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1097 | if (addr_found) { |
| 1098 | *stop_analysis = true; |
| 1099 | return success; |
| 1100 | } |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1101 | class_method_index++; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1102 | it.Next(); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 1103 | } |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1104 | while (it.HasNextVirtualMethod()) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1105 | if (!DumpOatMethod(vios, class_def, class_method_index, oat_class, dex_file, |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1106 | it.GetMemberIndex(), it.GetMethodCodeItem(), |
Mathieu Chartier | dc00f18 | 2016-07-14 10:10:44 -0700 | [diff] [blame] | 1107 | it.GetRawMemberAccessFlags(), &addr_found)) { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1108 | success = false; |
| 1109 | } |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1110 | if (addr_found) { |
| 1111 | *stop_analysis = true; |
| 1112 | return success; |
| 1113 | } |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1114 | class_method_index++; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1115 | it.Next(); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 1116 | } |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1117 | DCHECK(!it.HasNext()); |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1118 | vios->Stream() << std::flush; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1119 | return success; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 1120 | } |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 1121 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1122 | static constexpr uint32_t kPrologueBytes = 16; |
| 1123 | |
| 1124 | // When this was picked, the largest arm method was 55,256 bytes and arm64 was 50,412 bytes. |
| 1125 | static constexpr uint32_t kMaxCodeSize = 100 * 1000; |
| 1126 | |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1127 | bool DumpOatMethod(VariableIndentationOutputStream* vios, |
| 1128 | const DexFile::ClassDef& class_def, |
Ian Rogers | 8b2c0b9 | 2013-09-19 02:56:49 -0700 | [diff] [blame] | 1129 | uint32_t class_method_index, |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1130 | const OatFile::OatClass& oat_class, const DexFile& dex_file, |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1131 | uint32_t dex_method_idx, const DexFile::CodeItem* code_item, |
Mathieu Chartier | dc00f18 | 2016-07-14 10:10:44 -0700 | [diff] [blame] | 1132 | uint32_t method_access_flags, bool* addr_found) { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1133 | bool success = true; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1134 | |
| 1135 | // TODO: Support regex |
| 1136 | std::string method_name = dex_file.GetMethodName(dex_file.GetMethodId(dex_method_idx)); |
| 1137 | if (method_name.find(options_.method_filter_) == std::string::npos) { |
Nicolas Geoffray | 3fcd220 | 2014-11-12 18:02:36 +0000 | [diff] [blame] | 1138 | return success; |
| 1139 | } |
| 1140 | |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1141 | std::string pretty_method = dex_file.PrettyMethod(dex_method_idx, true); |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1142 | vios->Stream() << StringPrintf("%d: %s (dex_method_idx=%d)\n", |
| 1143 | class_method_index, pretty_method.c_str(), |
| 1144 | dex_method_idx); |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1145 | if (options_.list_methods_) return success; |
| 1146 | |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1147 | uint32_t oat_method_offsets_offset = oat_class.GetOatMethodOffsetsOffset(class_method_index); |
| 1148 | const OatMethodOffsets* oat_method_offsets = oat_class.GetOatMethodOffsets(class_method_index); |
| 1149 | const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); |
| 1150 | uint32_t code_offset = oat_method.GetCodeOffset(); |
| 1151 | uint32_t code_size = oat_method.GetQuickCodeSize(); |
| 1152 | if (resolved_addr2instr_ != 0) { |
| 1153 | if (resolved_addr2instr_ > code_offset + code_size) { |
| 1154 | return success; |
| 1155 | } else { |
| 1156 | *addr_found = true; // stop analyzing file at next iteration |
| 1157 | } |
| 1158 | } |
| 1159 | |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1160 | // Everything below is indented at least once. |
| 1161 | ScopedIndentation indent1(vios); |
| 1162 | |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1163 | { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1164 | vios->Stream() << "DEX CODE:\n"; |
| 1165 | ScopedIndentation indent2(vios); |
| 1166 | DumpDexCode(vios->Stream(), dex_file, code_item); |
Ian Rogers | b23a772 | 2012-10-09 16:54:26 -0700 | [diff] [blame] | 1167 | } |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1168 | |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1169 | std::unique_ptr<StackHandleScope<1>> hs; |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1170 | std::unique_ptr<verifier::MethodVerifier> verifier; |
| 1171 | if (Runtime::Current() != nullptr) { |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1172 | // We need to have the handle scope stay live until after the verifier since the verifier has |
| 1173 | // a handle to the dex cache from hs. |
| 1174 | hs.reset(new StackHandleScope<1>(Thread::Current())); |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1175 | vios->Stream() << "VERIFIER TYPE ANALYSIS:\n"; |
| 1176 | ScopedIndentation indent2(vios); |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1177 | verifier.reset(DumpVerifier(vios, hs.get(), |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1178 | dex_method_idx, &dex_file, class_def, code_item, |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1179 | method_access_flags)); |
Ian Rogers | b23a772 | 2012-10-09 16:54:26 -0700 | [diff] [blame] | 1180 | } |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1181 | { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1182 | vios->Stream() << "OatMethodOffsets "; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1183 | if (options_.absolute_addresses_) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1184 | vios->Stream() << StringPrintf("%p ", oat_method_offsets); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1185 | } |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1186 | vios->Stream() << StringPrintf("(offset=0x%08x)\n", oat_method_offsets_offset); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1187 | if (oat_method_offsets_offset > oat_file_.Size()) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1188 | vios->Stream() << StringPrintf( |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1189 | "WARNING: oat method offsets offset 0x%08x is past end of file 0x%08zx.\n", |
| 1190 | oat_method_offsets_offset, oat_file_.Size()); |
| 1191 | // If we can't read OatMethodOffsets, the rest of the data is dangerous to read. |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1192 | vios->Stream() << std::flush; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1193 | return false; |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1194 | } |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1195 | |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1196 | ScopedIndentation indent2(vios); |
| 1197 | vios->Stream() << StringPrintf("code_offset: 0x%08x ", code_offset); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1198 | uint32_t aligned_code_begin = AlignCodeOffset(oat_method.GetCodeOffset()); |
| 1199 | if (aligned_code_begin > oat_file_.Size()) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1200 | vios->Stream() << StringPrintf("WARNING: " |
| 1201 | "code offset 0x%08x is past end of file 0x%08zx.\n", |
| 1202 | aligned_code_begin, oat_file_.Size()); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1203 | success = false; |
| 1204 | } |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1205 | vios->Stream() << "\n"; |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1206 | } |
| 1207 | { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1208 | vios->Stream() << "OatQuickMethodHeader "; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1209 | uint32_t method_header_offset = oat_method.GetOatQuickMethodHeaderOffset(); |
| 1210 | const OatQuickMethodHeader* method_header = oat_method.GetOatQuickMethodHeader(); |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 1211 | stats_.AddBitsIfUnique(Stats::kByteKindQuickMethodHeader, |
| 1212 | sizeof(*method_header) * kBitsPerByte, |
| 1213 | method_header); |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1214 | if (options_.absolute_addresses_) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1215 | vios->Stream() << StringPrintf("%p ", method_header); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1216 | } |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1217 | vios->Stream() << StringPrintf("(offset=0x%08x)\n", method_header_offset); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1218 | if (method_header_offset > oat_file_.Size()) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1219 | vios->Stream() << StringPrintf( |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1220 | "WARNING: oat quick method header offset 0x%08x is past end of file 0x%08zx.\n", |
| 1221 | method_header_offset, oat_file_.Size()); |
| 1222 | // If we can't read the OatQuickMethodHeader, the rest of the data is dangerous to read. |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1223 | vios->Stream() << std::flush; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1224 | return false; |
| 1225 | } |
| 1226 | |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1227 | ScopedIndentation indent2(vios); |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1228 | vios->Stream() << "vmap_table: "; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1229 | if (options_.absolute_addresses_) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1230 | vios->Stream() << StringPrintf("%p ", oat_method.GetVmapTable()); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1231 | } |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 1232 | uint32_t vmap_table_offset = method_header == |
| 1233 | nullptr ? 0 : method_header->GetVmapTableOffset(); |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1234 | vios->Stream() << StringPrintf("(offset=0x%08x)\n", vmap_table_offset); |
Nicolas Geoffray | 4acefd3 | 2016-10-24 13:14:58 +0100 | [diff] [blame] | 1235 | |
| 1236 | size_t vmap_table_offset_limit = |
| 1237 | (kIsVdexEnabled && IsMethodGeneratedByDexToDexCompiler(oat_method, code_item)) |
| 1238 | ? oat_file_.GetVdexFile()->Size() |
| 1239 | : method_header->GetCode() - oat_file_.Begin(); |
| 1240 | if (vmap_table_offset >= vmap_table_offset_limit) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1241 | vios->Stream() << StringPrintf("WARNING: " |
| 1242 | "vmap table offset 0x%08x is past end of file 0x%08zx. " |
| 1243 | "vmap table offset was loaded from offset 0x%08x.\n", |
Nicolas Geoffray | 4acefd3 | 2016-10-24 13:14:58 +0100 | [diff] [blame] | 1244 | vmap_table_offset, |
| 1245 | vmap_table_offset_limit, |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1246 | oat_method.GetVmapTableOffsetOffset()); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1247 | success = false; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1248 | } else if (options_.dump_vmap_) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1249 | DumpVmapData(vios, oat_method, code_item); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1250 | } |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1251 | } |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1252 | { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1253 | vios->Stream() << "QuickMethodFrameInfo\n"; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1254 | |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1255 | ScopedIndentation indent2(vios); |
| 1256 | vios->Stream() |
| 1257 | << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes()); |
| 1258 | vios->Stream() << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask()); |
| 1259 | DumpSpillMask(vios->Stream(), oat_method.GetCoreSpillMask(), false); |
| 1260 | vios->Stream() << "\n"; |
| 1261 | vios->Stream() << StringPrintf("fp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask()); |
| 1262 | DumpSpillMask(vios->Stream(), oat_method.GetFpSpillMask(), true); |
| 1263 | vios->Stream() << "\n"; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1264 | } |
| 1265 | { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1266 | // Based on spill masks from QuickMethodFrameInfo so placed |
| 1267 | // after it is dumped, but useful for understanding quick |
| 1268 | // code, so dumped here. |
| 1269 | ScopedIndentation indent2(vios); |
| 1270 | DumpVregLocations(vios->Stream(), oat_method, code_item); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1271 | } |
| 1272 | { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1273 | vios->Stream() << "CODE: "; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1274 | uint32_t code_size_offset = oat_method.GetQuickCodeSizeOffset(); |
| 1275 | if (code_size_offset > oat_file_.Size()) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1276 | ScopedIndentation indent2(vios); |
| 1277 | vios->Stream() << StringPrintf("WARNING: " |
| 1278 | "code size offset 0x%08x is past end of file 0x%08zx.", |
| 1279 | code_size_offset, oat_file_.Size()); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1280 | success = false; |
| 1281 | } else { |
| 1282 | const void* code = oat_method.GetQuickCode(); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1283 | uint32_t aligned_code_begin = AlignCodeOffset(code_offset); |
| 1284 | uint64_t aligned_code_end = aligned_code_begin + code_size; |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 1285 | stats_.AddBitsIfUnique(Stats::kByteKindCode, code_size * kBitsPerByte, code); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1286 | |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1287 | if (options_.absolute_addresses_) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1288 | vios->Stream() << StringPrintf("%p ", code); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1289 | } |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1290 | vios->Stream() << StringPrintf("(code_offset=0x%08x size_offset=0x%08x size=%u)%s\n", |
| 1291 | code_offset, |
| 1292 | code_size_offset, |
| 1293 | code_size, |
| 1294 | code != nullptr ? "..." : ""); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1295 | |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1296 | ScopedIndentation indent2(vios); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1297 | if (aligned_code_begin > oat_file_.Size()) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1298 | vios->Stream() << StringPrintf("WARNING: " |
| 1299 | "start of code at 0x%08x is past end of file 0x%08zx.", |
| 1300 | aligned_code_begin, oat_file_.Size()); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1301 | success = false; |
| 1302 | } else if (aligned_code_end > oat_file_.Size()) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1303 | vios->Stream() << StringPrintf( |
| 1304 | "WARNING: " |
| 1305 | "end of code at 0x%08" PRIx64 " is past end of file 0x%08zx. " |
| 1306 | "code size is 0x%08x loaded from offset 0x%08x.\n", |
| 1307 | aligned_code_end, oat_file_.Size(), |
| 1308 | code_size, code_size_offset); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1309 | success = false; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1310 | if (options_.disassemble_code_) { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1311 | if (code_size_offset + kPrologueBytes <= oat_file_.Size()) { |
Vladimir Marko | 9d07e3d | 2016-03-31 12:02:28 +0100 | [diff] [blame] | 1312 | DumpCode(vios, oat_method, code_item, true, kPrologueBytes); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1313 | } |
| 1314 | } |
| 1315 | } else if (code_size > kMaxCodeSize) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1316 | vios->Stream() << StringPrintf( |
| 1317 | "WARNING: " |
| 1318 | "code size %d is bigger than max expected threshold of %d. " |
| 1319 | "code size is 0x%08x loaded from offset 0x%08x.\n", |
| 1320 | code_size, kMaxCodeSize, |
| 1321 | code_size, code_size_offset); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1322 | success = false; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1323 | if (options_.disassemble_code_) { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1324 | if (code_size_offset + kPrologueBytes <= oat_file_.Size()) { |
Vladimir Marko | 9d07e3d | 2016-03-31 12:02:28 +0100 | [diff] [blame] | 1325 | DumpCode(vios, oat_method, code_item, true, kPrologueBytes); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1326 | } |
| 1327 | } |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1328 | } else if (options_.disassemble_code_) { |
Vladimir Marko | 9d07e3d | 2016-03-31 12:02:28 +0100 | [diff] [blame] | 1329 | DumpCode(vios, oat_method, code_item, !success, 0); |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1330 | } |
| 1331 | } |
| 1332 | } |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1333 | vios->Stream() << std::flush; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1334 | return success; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 1335 | } |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 1336 | |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 1337 | void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) { |
| 1338 | if (spill_mask == 0) { |
| 1339 | return; |
| 1340 | } |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1341 | os << "("; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 1342 | for (size_t i = 0; i < 32; i++) { |
| 1343 | if ((spill_mask & (1 << i)) != 0) { |
| 1344 | if (is_float) { |
| 1345 | os << "fr" << i; |
| 1346 | } else { |
| 1347 | os << "r" << i; |
| 1348 | } |
| 1349 | spill_mask ^= 1 << i; // clear bit |
| 1350 | if (spill_mask != 0) { |
| 1351 | os << ", "; |
| 1352 | } else { |
| 1353 | break; |
| 1354 | } |
| 1355 | } |
| 1356 | } |
| 1357 | os << ")"; |
| 1358 | } |
| 1359 | |
Roland Levillain | 442b46a | 2015-02-18 16:54:21 +0000 | [diff] [blame] | 1360 | // Display data stored at the the vmap offset of an oat method. |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1361 | void DumpVmapData(VariableIndentationOutputStream* vios, |
Roland Levillain | 442b46a | 2015-02-18 16:54:21 +0000 | [diff] [blame] | 1362 | const OatFile::OatMethod& oat_method, |
| 1363 | const DexFile::CodeItem* code_item) { |
Roland Levillain | f2650d1 | 2015-05-28 14:53:28 +0100 | [diff] [blame] | 1364 | if (IsMethodGeneratedByOptimizingCompiler(oat_method, code_item)) { |
| 1365 | // The optimizing compiler outputs its CodeInfo data in the vmap table. |
Roland Levillain | 442b46a | 2015-02-18 16:54:21 +0000 | [diff] [blame] | 1366 | const void* raw_code_info = oat_method.GetVmapTable(); |
| 1367 | if (raw_code_info != nullptr) { |
| 1368 | CodeInfo code_info(raw_code_info); |
| 1369 | DCHECK(code_item != nullptr); |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1370 | ScopedIndentation indent1(vios); |
Mathieu Chartier | cbcedbf | 2017-03-12 22:24:50 -0700 | [diff] [blame] | 1371 | MethodInfo method_info = oat_method.GetOatQuickMethodHeader()->GetOptimizedMethodInfo(); |
| 1372 | DumpCodeInfo(vios, code_info, oat_method, *code_item, method_info); |
Roland Levillain | 442b46a | 2015-02-18 16:54:21 +0000 | [diff] [blame] | 1373 | } |
Nicolas Geoffray | 0a5cd12 | 2015-07-16 14:15:05 +0100 | [diff] [blame] | 1374 | } else if (IsMethodGeneratedByDexToDexCompiler(oat_method, code_item)) { |
| 1375 | // We don't encode the size in the table, so just emit that we have quickened |
| 1376 | // information. |
| 1377 | ScopedIndentation indent(vios); |
| 1378 | vios->Stream() << "quickened data\n"; |
Roland Levillain | 442b46a | 2015-02-18 16:54:21 +0000 | [diff] [blame] | 1379 | } else { |
Vladimir Marko | 9d07e3d | 2016-03-31 12:02:28 +0100 | [diff] [blame] | 1380 | // Otherwise, there is nothing to display. |
Nicolas Geoffray | 20d3eae | 2014-09-17 11:27:23 +0100 | [diff] [blame] | 1381 | } |
Roland Levillain | 442b46a | 2015-02-18 16:54:21 +0000 | [diff] [blame] | 1382 | } |
| 1383 | |
| 1384 | // Display a CodeInfo object emitted by the optimizing compiler. |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1385 | void DumpCodeInfo(VariableIndentationOutputStream* vios, |
Roland Levillain | 442b46a | 2015-02-18 16:54:21 +0000 | [diff] [blame] | 1386 | const CodeInfo& code_info, |
Roland Levillain | f2650d1 | 2015-05-28 14:53:28 +0100 | [diff] [blame] | 1387 | const OatFile::OatMethod& oat_method, |
Mathieu Chartier | cbcedbf | 2017-03-12 22:24:50 -0700 | [diff] [blame] | 1388 | const DexFile::CodeItem& code_item, |
| 1389 | const MethodInfo& method_info) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1390 | code_info.Dump(vios, |
Roland Levillain | f2650d1 | 2015-05-28 14:53:28 +0100 | [diff] [blame] | 1391 | oat_method.GetCodeOffset(), |
| 1392 | code_item.registers_size_, |
Mathieu Chartier | a2f526f | 2017-01-19 14:48:48 -0800 | [diff] [blame] | 1393 | options_.dump_code_info_stack_maps_, |
Mathieu Chartier | cbcedbf | 2017-03-12 22:24:50 -0700 | [diff] [blame] | 1394 | instruction_set_, |
| 1395 | method_info); |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 1396 | } |
| 1397 | |
Razvan A Lupusoru | faf9f0d | 2014-08-29 17:56:46 -0700 | [diff] [blame] | 1398 | void DumpVregLocations(std::ostream& os, const OatFile::OatMethod& oat_method, |
| 1399 | const DexFile::CodeItem* code_item) { |
| 1400 | if (code_item != nullptr) { |
| 1401 | size_t num_locals_ins = code_item->registers_size_; |
| 1402 | size_t num_ins = code_item->ins_size_; |
| 1403 | size_t num_locals = num_locals_ins - num_ins; |
| 1404 | size_t num_outs = code_item->outs_size_; |
| 1405 | |
| 1406 | os << "vr_stack_locations:"; |
| 1407 | for (size_t reg = 0; reg <= num_locals_ins; reg++) { |
| 1408 | // For readability, delimit the different kinds of VRs. |
| 1409 | if (reg == num_locals_ins) { |
| 1410 | os << "\n\tmethod*:"; |
| 1411 | } else if (reg == num_locals && num_ins > 0) { |
| 1412 | os << "\n\tins:"; |
| 1413 | } else if (reg == 0 && num_locals > 0) { |
| 1414 | os << "\n\tlocals:"; |
| 1415 | } |
| 1416 | |
Nicolas Geoffray | 15b9d52 | 2015-03-12 15:05:13 +0000 | [diff] [blame] | 1417 | uint32_t offset = StackVisitor::GetVRegOffsetFromQuickCode( |
| 1418 | code_item, |
| 1419 | oat_method.GetCoreSpillMask(), |
| 1420 | oat_method.GetFpSpillMask(), |
| 1421 | oat_method.GetFrameSizeInBytes(), |
| 1422 | reg, |
| 1423 | GetInstructionSet()); |
Razvan A Lupusoru | faf9f0d | 2014-08-29 17:56:46 -0700 | [diff] [blame] | 1424 | os << " v" << reg << "[sp + #" << offset << "]"; |
| 1425 | } |
| 1426 | |
| 1427 | for (size_t out_reg = 0; out_reg < num_outs; out_reg++) { |
| 1428 | if (out_reg == 0) { |
| 1429 | os << "\n\touts:"; |
| 1430 | } |
| 1431 | |
| 1432 | uint32_t offset = StackVisitor::GetOutVROffset(out_reg, GetInstructionSet()); |
| 1433 | os << " v" << out_reg << "[sp + #" << offset << "]"; |
| 1434 | } |
| 1435 | |
| 1436 | os << "\n"; |
| 1437 | } |
| 1438 | } |
| 1439 | |
Ian Rogers | b23a772 | 2012-10-09 16:54:26 -0700 | [diff] [blame] | 1440 | void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) { |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1441 | if (code_item != nullptr) { |
Ian Rogers | b23a772 | 2012-10-09 16:54:26 -0700 | [diff] [blame] | 1442 | size_t i = 0; |
| 1443 | while (i < code_item->insns_size_in_code_units_) { |
| 1444 | const Instruction* instruction = Instruction::At(&code_item->insns_[i]); |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1445 | os << StringPrintf("0x%04zx: ", i) << instruction->DumpHexLE(5) |
| 1446 | << StringPrintf("\t| %s\n", instruction->DumpString(&dex_file).c_str()); |
Ian Rogers | b23a772 | 2012-10-09 16:54:26 -0700 | [diff] [blame] | 1447 | i += instruction->SizeInCodeUnits(); |
| 1448 | } |
| 1449 | } |
| 1450 | } |
| 1451 | |
Roland Levillain | f2650d1 | 2015-05-28 14:53:28 +0100 | [diff] [blame] | 1452 | // Has `oat_method` -- corresponding to the Dex `code_item` -- been compiled by |
| 1453 | // the optimizing compiler? |
| 1454 | static bool IsMethodGeneratedByOptimizingCompiler(const OatFile::OatMethod& oat_method, |
| 1455 | const DexFile::CodeItem* code_item) { |
| 1456 | // If the native GC map is null and the Dex `code_item` is not |
| 1457 | // null, then this method has been compiled with the optimizing |
| 1458 | // compiler. |
Nicolas Geoffray | 0a5cd12 | 2015-07-16 14:15:05 +0100 | [diff] [blame] | 1459 | return oat_method.GetQuickCode() != nullptr && |
Vladimir Marko | 9d07e3d | 2016-03-31 12:02:28 +0100 | [diff] [blame] | 1460 | oat_method.GetVmapTable() != nullptr && |
Nicolas Geoffray | 0a5cd12 | 2015-07-16 14:15:05 +0100 | [diff] [blame] | 1461 | code_item != nullptr; |
| 1462 | } |
| 1463 | |
| 1464 | // Has `oat_method` -- corresponding to the Dex `code_item` -- been compiled by |
| 1465 | // the dextodex compiler? |
| 1466 | static bool IsMethodGeneratedByDexToDexCompiler(const OatFile::OatMethod& oat_method, |
| 1467 | const DexFile::CodeItem* code_item) { |
| 1468 | // If the quick code is null, the Dex `code_item` is not |
| 1469 | // null, and the vmap table is not null, then this method has been compiled |
| 1470 | // with the dextodex compiler. |
| 1471 | return oat_method.GetQuickCode() == nullptr && |
| 1472 | oat_method.GetVmapTable() != nullptr && |
| 1473 | code_item != nullptr; |
Roland Levillain | f2650d1 | 2015-05-28 14:53:28 +0100 | [diff] [blame] | 1474 | } |
| 1475 | |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1476 | verifier::MethodVerifier* DumpVerifier(VariableIndentationOutputStream* vios, |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1477 | StackHandleScope<1>* hs, |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1478 | uint32_t dex_method_idx, |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1479 | const DexFile* dex_file, |
| 1480 | const DexFile::ClassDef& class_def, |
| 1481 | const DexFile::CodeItem* code_item, |
| 1482 | uint32_t method_access_flags) { |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1483 | if ((method_access_flags & kAccNative) == 0) { |
| 1484 | ScopedObjectAccess soa(Thread::Current()); |
Mathieu Chartier | d57d454 | 2015-10-14 10:55:30 -0700 | [diff] [blame] | 1485 | Runtime* const runtime = Runtime::Current(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1486 | Handle<mirror::DexCache> dex_cache( |
Mathieu Chartier | f284d44 | 2016-06-02 11:48:30 -0700 | [diff] [blame] | 1487 | hs->NewHandle(runtime->GetClassLinker()->RegisterDexFile(*dex_file, nullptr))); |
Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1488 | CHECK(dex_cache != nullptr); |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1489 | DCHECK(options_.class_loader_ != nullptr); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1490 | return verifier::MethodVerifier::VerifyMethodAndDump( |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1491 | soa.Self(), vios, dex_method_idx, dex_file, dex_cache, *options_.class_loader_, |
David Brazdil | 15fc729 | 2016-09-02 14:13:18 +0100 | [diff] [blame] | 1492 | class_def, code_item, nullptr, method_access_flags); |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1493 | } |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1494 | |
| 1495 | return nullptr; |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1496 | } |
| 1497 | |
Vladimir Marko | adbf93e | 2016-04-08 11:18:25 +0100 | [diff] [blame] | 1498 | // The StackMapsHelper provides the stack maps in the native PC order. |
| 1499 | // For identical native PCs, the order from the CodeInfo is preserved. |
| 1500 | class StackMapsHelper { |
| 1501 | public: |
Mathieu Chartier | a2f526f | 2017-01-19 14:48:48 -0800 | [diff] [blame] | 1502 | explicit StackMapsHelper(const uint8_t* raw_code_info, InstructionSet instruction_set) |
Vladimir Marko | adbf93e | 2016-04-08 11:18:25 +0100 | [diff] [blame] | 1503 | : code_info_(raw_code_info), |
| 1504 | encoding_(code_info_.ExtractEncoding()), |
| 1505 | number_of_stack_maps_(code_info_.GetNumberOfStackMaps(encoding_)), |
| 1506 | indexes_(), |
Mathieu Chartier | a2f526f | 2017-01-19 14:48:48 -0800 | [diff] [blame] | 1507 | offset_(static_cast<uint32_t>(-1)), |
| 1508 | stack_map_index_(0u), |
| 1509 | instruction_set_(instruction_set) { |
Vladimir Marko | adbf93e | 2016-04-08 11:18:25 +0100 | [diff] [blame] | 1510 | if (number_of_stack_maps_ != 0u) { |
| 1511 | // Check if native PCs are ordered. |
| 1512 | bool ordered = true; |
| 1513 | StackMap last = code_info_.GetStackMapAt(0u, encoding_); |
| 1514 | for (size_t i = 1; i != number_of_stack_maps_; ++i) { |
| 1515 | StackMap current = code_info_.GetStackMapAt(i, encoding_); |
Mathieu Chartier | 575d3e6 | 2017-02-06 11:00:40 -0800 | [diff] [blame] | 1516 | if (last.GetNativePcOffset(encoding_.stack_map.encoding, instruction_set) > |
| 1517 | current.GetNativePcOffset(encoding_.stack_map.encoding, instruction_set)) { |
Vladimir Marko | adbf93e | 2016-04-08 11:18:25 +0100 | [diff] [blame] | 1518 | ordered = false; |
| 1519 | break; |
| 1520 | } |
| 1521 | last = current; |
| 1522 | } |
| 1523 | if (!ordered) { |
| 1524 | // Create indirection indexes for access in native PC order. We do not optimize |
| 1525 | // for the fact that there can currently be only two separately ordered ranges, |
| 1526 | // namely normal stack maps and catch-point stack maps. |
| 1527 | indexes_.resize(number_of_stack_maps_); |
| 1528 | std::iota(indexes_.begin(), indexes_.end(), 0u); |
| 1529 | std::sort(indexes_.begin(), |
| 1530 | indexes_.end(), |
| 1531 | [this](size_t lhs, size_t rhs) { |
| 1532 | StackMap left = code_info_.GetStackMapAt(lhs, encoding_); |
Mathieu Chartier | 575d3e6 | 2017-02-06 11:00:40 -0800 | [diff] [blame] | 1533 | uint32_t left_pc = left.GetNativePcOffset(encoding_.stack_map.encoding, |
Mathieu Chartier | a2f526f | 2017-01-19 14:48:48 -0800 | [diff] [blame] | 1534 | instruction_set_); |
Vladimir Marko | adbf93e | 2016-04-08 11:18:25 +0100 | [diff] [blame] | 1535 | StackMap right = code_info_.GetStackMapAt(rhs, encoding_); |
Mathieu Chartier | 575d3e6 | 2017-02-06 11:00:40 -0800 | [diff] [blame] | 1536 | uint32_t right_pc = right.GetNativePcOffset(encoding_.stack_map.encoding, |
Mathieu Chartier | a2f526f | 2017-01-19 14:48:48 -0800 | [diff] [blame] | 1537 | instruction_set_); |
Vladimir Marko | adbf93e | 2016-04-08 11:18:25 +0100 | [diff] [blame] | 1538 | // If the PCs are the same, compare indexes to preserve the original order. |
| 1539 | return (left_pc < right_pc) || (left_pc == right_pc && lhs < rhs); |
| 1540 | }); |
| 1541 | } |
Mathieu Chartier | 575d3e6 | 2017-02-06 11:00:40 -0800 | [diff] [blame] | 1542 | offset_ = GetStackMapAt(0).GetNativePcOffset(encoding_.stack_map.encoding, |
Mathieu Chartier | a2f526f | 2017-01-19 14:48:48 -0800 | [diff] [blame] | 1543 | instruction_set_); |
Vladimir Marko | adbf93e | 2016-04-08 11:18:25 +0100 | [diff] [blame] | 1544 | } |
| 1545 | } |
| 1546 | |
| 1547 | const CodeInfo& GetCodeInfo() const { |
| 1548 | return code_info_; |
| 1549 | } |
| 1550 | |
| 1551 | const CodeInfoEncoding& GetEncoding() const { |
| 1552 | return encoding_; |
| 1553 | } |
| 1554 | |
Mathieu Chartier | a2f526f | 2017-01-19 14:48:48 -0800 | [diff] [blame] | 1555 | uint32_t GetOffset() const { |
Vladimir Marko | adbf93e | 2016-04-08 11:18:25 +0100 | [diff] [blame] | 1556 | return offset_; |
| 1557 | } |
| 1558 | |
| 1559 | StackMap GetStackMap() const { |
| 1560 | return GetStackMapAt(stack_map_index_); |
| 1561 | } |
| 1562 | |
| 1563 | void Next() { |
| 1564 | ++stack_map_index_; |
| 1565 | offset_ = (stack_map_index_ == number_of_stack_maps_) |
Mathieu Chartier | a2f526f | 2017-01-19 14:48:48 -0800 | [diff] [blame] | 1566 | ? static_cast<uint32_t>(-1) |
Mathieu Chartier | 575d3e6 | 2017-02-06 11:00:40 -0800 | [diff] [blame] | 1567 | : GetStackMapAt(stack_map_index_).GetNativePcOffset(encoding_.stack_map.encoding, |
Mathieu Chartier | a2f526f | 2017-01-19 14:48:48 -0800 | [diff] [blame] | 1568 | instruction_set_); |
Vladimir Marko | adbf93e | 2016-04-08 11:18:25 +0100 | [diff] [blame] | 1569 | } |
| 1570 | |
| 1571 | private: |
| 1572 | StackMap GetStackMapAt(size_t i) const { |
| 1573 | if (!indexes_.empty()) { |
| 1574 | i = indexes_[i]; |
| 1575 | } |
| 1576 | DCHECK_LT(i, number_of_stack_maps_); |
| 1577 | return code_info_.GetStackMapAt(i, encoding_); |
| 1578 | } |
| 1579 | |
| 1580 | const CodeInfo code_info_; |
| 1581 | const CodeInfoEncoding encoding_; |
| 1582 | const size_t number_of_stack_maps_; |
| 1583 | dchecked_vector<size_t> indexes_; // Used if stack map native PCs are not ordered. |
Mathieu Chartier | a2f526f | 2017-01-19 14:48:48 -0800 | [diff] [blame] | 1584 | uint32_t offset_; |
Vladimir Marko | adbf93e | 2016-04-08 11:18:25 +0100 | [diff] [blame] | 1585 | size_t stack_map_index_; |
Mathieu Chartier | a2f526f | 2017-01-19 14:48:48 -0800 | [diff] [blame] | 1586 | const InstructionSet instruction_set_; |
Vladimir Marko | adbf93e | 2016-04-08 11:18:25 +0100 | [diff] [blame] | 1587 | }; |
| 1588 | |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1589 | void DumpCode(VariableIndentationOutputStream* vios, |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1590 | const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, |
| 1591 | bool bad_input, size_t code_size) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1592 | const void* quick_code = oat_method.GetQuickCode(); |
| 1593 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1594 | if (code_size == 0) { |
| 1595 | code_size = oat_method.GetQuickCodeSize(); |
| 1596 | } |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 1597 | if (code_size == 0 || quick_code == nullptr) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1598 | vios->Stream() << "NO CODE!\n"; |
Ian Rogers | b23a772 | 2012-10-09 16:54:26 -0700 | [diff] [blame] | 1599 | return; |
Vladimir Marko | adbf93e | 2016-04-08 11:18:25 +0100 | [diff] [blame] | 1600 | } else if (!bad_input && IsMethodGeneratedByOptimizingCompiler(oat_method, code_item)) { |
| 1601 | // The optimizing compiler outputs its CodeInfo data in the vmap table. |
Mathieu Chartier | a2f526f | 2017-01-19 14:48:48 -0800 | [diff] [blame] | 1602 | StackMapsHelper helper(oat_method.GetVmapTable(), instruction_set_); |
Mathieu Chartier | cbcedbf | 2017-03-12 22:24:50 -0700 | [diff] [blame] | 1603 | MethodInfo method_info(oat_method.GetOatQuickMethodHeader()->GetOptimizedMethodInfo()); |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 1604 | { |
| 1605 | CodeInfoEncoding encoding(helper.GetEncoding()); |
Mathieu Chartier | 575d3e6 | 2017-02-06 11:00:40 -0800 | [diff] [blame] | 1606 | StackMapEncoding stack_map_encoding(encoding.stack_map.encoding); |
Mathieu Chartier | 575d3e6 | 2017-02-06 11:00:40 -0800 | [diff] [blame] | 1607 | const size_t num_stack_maps = encoding.stack_map.num_entries; |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 1608 | if (stats_.AddBitsIfUnique(Stats::kByteKindCodeInfoEncoding, |
Mathieu Chartier | d776ff0 | 2017-01-17 09:32:18 -0800 | [diff] [blame] | 1609 | encoding.HeaderSize() * kBitsPerByte, |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 1610 | oat_method.GetVmapTable())) { |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 1611 | // Stack maps |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 1612 | stats_.AddBits( |
| 1613 | Stats::kByteKindStackMapNativePc, |
| 1614 | stack_map_encoding.GetNativePcEncoding().BitSize() * num_stack_maps); |
| 1615 | stats_.AddBits( |
| 1616 | Stats::kByteKindStackMapDexPc, |
| 1617 | stack_map_encoding.GetDexPcEncoding().BitSize() * num_stack_maps); |
| 1618 | stats_.AddBits( |
| 1619 | Stats::kByteKindStackMapDexRegisterMap, |
| 1620 | stack_map_encoding.GetDexRegisterMapEncoding().BitSize() * num_stack_maps); |
| 1621 | stats_.AddBits( |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 1622 | Stats::kByteKindStackMapInlineInfoIndex, |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 1623 | stack_map_encoding.GetInlineInfoEncoding().BitSize() * num_stack_maps); |
| 1624 | stats_.AddBits( |
Mathieu Chartier | 1a20b68 | 2017-01-31 14:25:16 -0800 | [diff] [blame] | 1625 | Stats::kByteKindStackMapRegisterMaskIndex, |
| 1626 | stack_map_encoding.GetRegisterMaskIndexEncoding().BitSize() * num_stack_maps); |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 1627 | stats_.AddBits( |
David Srbecky | 45aa598 | 2016-03-18 02:15:09 +0000 | [diff] [blame] | 1628 | Stats::kByteKindStackMapStackMaskIndex, |
| 1629 | stack_map_encoding.GetStackMaskIndexEncoding().BitSize() * num_stack_maps); |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 1630 | |
| 1631 | // Stack masks |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 1632 | stats_.AddBits( |
David Srbecky | 45aa598 | 2016-03-18 02:15:09 +0000 | [diff] [blame] | 1633 | Stats::kByteKindCodeInfoStackMasks, |
Mathieu Chartier | 575d3e6 | 2017-02-06 11:00:40 -0800 | [diff] [blame] | 1634 | encoding.stack_mask.encoding.BitSize() * encoding.stack_mask.num_entries); |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 1635 | |
| 1636 | // Register masks |
Mathieu Chartier | 1a20b68 | 2017-01-31 14:25:16 -0800 | [diff] [blame] | 1637 | stats_.AddBits( |
| 1638 | Stats::kByteKindCodeInfoRegisterMasks, |
Mathieu Chartier | 575d3e6 | 2017-02-06 11:00:40 -0800 | [diff] [blame] | 1639 | encoding.register_mask.encoding.BitSize() * encoding.register_mask.num_entries); |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 1640 | |
Mathieu Chartier | d776ff0 | 2017-01-17 09:32:18 -0800 | [diff] [blame] | 1641 | // Invoke infos |
| 1642 | if (encoding.invoke_info.num_entries > 0u) { |
| 1643 | stats_.AddBits( |
| 1644 | Stats::kByteKindCodeInfoInvokeInfo, |
| 1645 | encoding.invoke_info.encoding.BitSize() * encoding.invoke_info.num_entries); |
| 1646 | } |
| 1647 | |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 1648 | // Location catalog |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 1649 | const size_t location_catalog_bytes = |
| 1650 | helper.GetCodeInfo().GetDexRegisterLocationCatalogSize(encoding); |
| 1651 | stats_.AddBits(Stats::kByteKindCodeInfoLocationCatalog, |
| 1652 | kBitsPerByte * location_catalog_bytes); |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 1653 | // Dex register bytes. |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 1654 | const size_t dex_register_bytes = |
| 1655 | helper.GetCodeInfo().GetDexRegisterMapsSize(encoding, code_item->registers_size_); |
| 1656 | stats_.AddBits( |
| 1657 | Stats::kByteKindCodeInfoDexRegisterMap, |
| 1658 | kBitsPerByte * dex_register_bytes); |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 1659 | |
| 1660 | // Inline infos. |
| 1661 | const size_t num_inline_infos = encoding.inline_info.num_entries; |
| 1662 | if (num_inline_infos > 0u) { |
| 1663 | stats_.AddBits( |
Mathieu Chartier | cbcedbf | 2017-03-12 22:24:50 -0700 | [diff] [blame] | 1664 | Stats::kByteKindInlineInfoMethodIndexIdx, |
| 1665 | encoding.inline_info.encoding.GetMethodIndexIdxEncoding().BitSize() * |
| 1666 | num_inline_infos); |
Mathieu Chartier | 1e08379 | 2017-02-08 13:30:04 -0800 | [diff] [blame] | 1667 | stats_.AddBits( |
| 1668 | Stats::kByteKindInlineInfoDexPc, |
| 1669 | encoding.inline_info.encoding.GetDexPcEncoding().BitSize() * num_inline_infos); |
| 1670 | stats_.AddBits( |
| 1671 | Stats::kByteKindInlineInfoExtraData, |
| 1672 | encoding.inline_info.encoding.GetExtraDataEncoding().BitSize() * num_inline_infos); |
| 1673 | stats_.AddBits( |
| 1674 | Stats::kByteKindInlineInfoDexRegisterMap, |
| 1675 | encoding.inline_info.encoding.GetDexRegisterMapEncoding().BitSize() * |
| 1676 | num_inline_infos); |
| 1677 | stats_.AddBits(Stats::kByteKindInlineInfoIsLast, num_inline_infos); |
| 1678 | } |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 1679 | } |
| 1680 | } |
Vladimir Marko | adbf93e | 2016-04-08 11:18:25 +0100 | [diff] [blame] | 1681 | const uint8_t* quick_native_pc = reinterpret_cast<const uint8_t*>(quick_code); |
| 1682 | size_t offset = 0; |
| 1683 | while (offset < code_size) { |
| 1684 | offset += disassembler_->Dump(vios->Stream(), quick_native_pc + offset); |
| 1685 | if (offset == helper.GetOffset()) { |
| 1686 | ScopedIndentation indent1(vios); |
| 1687 | StackMap stack_map = helper.GetStackMap(); |
| 1688 | DCHECK(stack_map.IsValid()); |
| 1689 | stack_map.Dump(vios, |
| 1690 | helper.GetCodeInfo(), |
| 1691 | helper.GetEncoding(), |
Mathieu Chartier | cbcedbf | 2017-03-12 22:24:50 -0700 | [diff] [blame] | 1692 | method_info, |
Vladimir Marko | adbf93e | 2016-04-08 11:18:25 +0100 | [diff] [blame] | 1693 | oat_method.GetCodeOffset(), |
Mathieu Chartier | a2f526f | 2017-01-19 14:48:48 -0800 | [diff] [blame] | 1694 | code_item->registers_size_, |
| 1695 | instruction_set_); |
Vladimir Marko | adbf93e | 2016-04-08 11:18:25 +0100 | [diff] [blame] | 1696 | do { |
| 1697 | helper.Next(); |
| 1698 | // There may be multiple stack maps at a given PC. We display only the first one. |
| 1699 | } while (offset == helper.GetOffset()); |
| 1700 | } |
| 1701 | DCHECK_LT(offset, helper.GetOffset()); |
| 1702 | } |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 1703 | } else { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1704 | const uint8_t* quick_native_pc = reinterpret_cast<const uint8_t*>(quick_code); |
| 1705 | size_t offset = 0; |
| 1706 | while (offset < code_size) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1707 | offset += disassembler_->Dump(vios->Stream(), quick_native_pc + offset); |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1708 | } |
Ian Rogers | b23a772 | 2012-10-09 16:54:26 -0700 | [diff] [blame] | 1709 | } |
| 1710 | } |
| 1711 | |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 1712 | const OatFile& oat_file_; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1713 | const std::vector<const OatFile::OatDexFile*> oat_dex_files_; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1714 | const OatDumperOptions& options_; |
| 1715 | uint32_t resolved_addr2instr_; |
Andreas Gampe | 372f3a3 | 2016-08-19 10:49:06 -0700 | [diff] [blame] | 1716 | const InstructionSet instruction_set_; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1717 | std::set<uintptr_t> offsets_; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1718 | Disassembler* disassembler_; |
Mathieu Chartier | 5e7c6a9 | 2017-01-17 16:38:30 -0800 | [diff] [blame] | 1719 | Stats stats_; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 1720 | }; |
| 1721 | |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 1722 | class ImageDumper { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1723 | public: |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 1724 | ImageDumper(std::ostream* os, |
| 1725 | gc::space::ImageSpace& image_space, |
| 1726 | const ImageHeader& image_header, |
| 1727 | OatDumperOptions* oat_dumper_options) |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1728 | : os_(os), |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1729 | vios_(os), |
| 1730 | indent1_(&vios_), |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1731 | image_space_(image_space), |
| 1732 | image_header_(image_header), |
| 1733 | oat_dumper_options_(oat_dumper_options) {} |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1734 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1735 | bool Dump() REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1736 | std::ostream& os = *os_; |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1737 | std::ostream& indent_os = vios_.Stream(); |
| 1738 | |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1739 | os << "MAGIC: " << image_header_.GetMagic() << "\n\n"; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 1740 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1741 | os << "IMAGE LOCATION: " << image_space_.GetImageLocation() << "\n\n"; |
| 1742 | |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1743 | os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n"; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 1744 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1745 | os << "IMAGE SIZE: " << image_header_.GetImageSize() << "\n\n"; |
| 1746 | |
| 1747 | for (size_t i = 0; i < ImageHeader::kSectionCount; ++i) { |
| 1748 | auto section = static_cast<ImageHeader::ImageSections>(i); |
| 1749 | os << "IMAGE SECTION " << section << ": " << image_header_.GetImageSection(section) << "\n\n"; |
| 1750 | } |
Mathieu Chartier | 31e8925 | 2013-08-28 11:29:12 -0700 | [diff] [blame] | 1751 | |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1752 | os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum()); |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 1753 | |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 1754 | os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n"; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 1755 | |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 1756 | os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n"; |
| 1757 | |
| 1758 | os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n"; |
| 1759 | |
| 1760 | os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n"; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 1761 | |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1762 | os << "PATCH DELTA:" << image_header_.GetPatchDelta() << "\n\n"; |
| 1763 | |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 1764 | os << "COMPILE PIC: " << (image_header_.CompilePic() ? "yes" : "no") << "\n\n"; |
| 1765 | |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1766 | { |
| 1767 | os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n"; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1768 | static_assert(arraysize(image_roots_descriptions_) == |
| 1769 | static_cast<size_t>(ImageHeader::kImageRootsMax), "sizes must match"); |
Vladimir Marko | eca3eda | 2016-11-09 16:26:44 +0000 | [diff] [blame] | 1770 | DCHECK_LE(image_header_.GetImageRoots()->GetLength(), ImageHeader::kImageRootsMax); |
| 1771 | for (int32_t i = 0, size = image_header_.GetImageRoots()->GetLength(); i != size; ++i) { |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1772 | ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i); |
| 1773 | const char* image_root_description = image_roots_descriptions_[i]; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1774 | mirror::Object* image_root_object = image_header_.GetImageRoot(image_root); |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1775 | indent_os << StringPrintf("%s: %p\n", image_root_description, image_root_object); |
Vladimir Marko | eca3eda | 2016-11-09 16:26:44 +0000 | [diff] [blame] | 1776 | if (image_root_object != nullptr && image_root_object->IsObjectArray()) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1777 | mirror::ObjectArray<mirror::Object>* image_root_object_array |
Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 1778 | = image_root_object->AsObjectArray<mirror::Object>(); |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1779 | ScopedIndentation indent2(&vios_); |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 1780 | for (int j = 0; j < image_root_object_array->GetLength(); j++) { |
| 1781 | mirror::Object* value = image_root_object_array->Get(j); |
Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 1782 | size_t run = 0; |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 1783 | for (int32_t k = j + 1; k < image_root_object_array->GetLength(); k++) { |
| 1784 | if (value == image_root_object_array->Get(k)) { |
Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 1785 | run++; |
| 1786 | } else { |
| 1787 | break; |
| 1788 | } |
| 1789 | } |
| 1790 | if (run == 0) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1791 | indent_os << StringPrintf("%d: ", j); |
Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 1792 | } else { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1793 | indent_os << StringPrintf("%d to %zd: ", j, j + run); |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 1794 | j = j + run; |
Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 1795 | } |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1796 | if (value != nullptr) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1797 | PrettyObjectValue(indent_os, value->GetClass(), value); |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1798 | } else { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1799 | indent_os << j << ": null\n"; |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1800 | } |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 1801 | } |
Brian Carlstrom | 34f426c | 2011-10-04 12:58:02 -0700 | [diff] [blame] | 1802 | } |
| 1803 | } |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1804 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1805 | |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1806 | { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1807 | os << "METHOD ROOTS\n"; |
| 1808 | static_assert(arraysize(image_methods_descriptions_) == |
| 1809 | static_cast<size_t>(ImageHeader::kImageMethodsCount), "sizes must match"); |
| 1810 | for (int i = 0; i < ImageHeader::kImageMethodsCount; i++) { |
| 1811 | auto image_root = static_cast<ImageHeader::ImageMethod>(i); |
| 1812 | const char* description = image_methods_descriptions_[i]; |
| 1813 | auto* image_method = image_header_.GetImageMethod(image_root); |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1814 | indent_os << StringPrintf("%s: %p\n", description, image_method); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1815 | } |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1816 | } |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1817 | os << "\n"; |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1818 | |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 1819 | Runtime* const runtime = Runtime::Current(); |
| 1820 | ClassLinker* class_linker = runtime->GetClassLinker(); |
Brian Carlstrom | 2ec6520 | 2014-03-03 15:16:37 -0800 | [diff] [blame] | 1821 | std::string image_filename = image_space_.GetImageFilename(); |
| 1822 | std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_filename); |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1823 | os << "OAT LOCATION: " << oat_location; |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1824 | os << "\n"; |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 1825 | std::string error_msg; |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 1826 | const OatFile* oat_file = image_space_.GetOatFile(); |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1827 | if (oat_file == nullptr) { |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 1828 | oat_file = runtime->GetOatFileManager().FindOpenedOatFileFromOatLocation(oat_location); |
| 1829 | } |
| 1830 | if (oat_file == nullptr) { |
| 1831 | oat_file = OatFile::Open(oat_location, |
| 1832 | oat_location, |
| 1833 | nullptr, |
| 1834 | nullptr, |
| 1835 | false, |
| 1836 | /*low_4gb*/false, |
| 1837 | nullptr, |
Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 1838 | &error_msg); |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 1839 | } |
| 1840 | if (oat_file == nullptr) { |
| 1841 | os << "OAT FILE NOT FOUND: " << error_msg << "\n"; |
| 1842 | return EXIT_FAILURE; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 1843 | } |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1844 | os << "\n"; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 1845 | |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 1846 | stats_.oat_file_bytes = oat_file->Size(); |
| 1847 | |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 1848 | oat_dumper_.reset(new OatDumper(*oat_file, *oat_dumper_options_)); |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 1849 | |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1850 | for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) { |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1851 | CHECK(oat_dex_file != nullptr); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1852 | stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(), |
| 1853 | oat_dex_file->FileSize())); |
Ian Rogers | 05f28c6 | 2012-10-23 18:12:13 -0700 | [diff] [blame] | 1854 | } |
| 1855 | |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1856 | os << "OBJECTS:\n" << std::flush; |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 1857 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1858 | // Loop through the image space and dump its objects. |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 1859 | gc::Heap* heap = runtime->GetHeap(); |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 1860 | Thread* self = Thread::Current(); |
Mathieu Chartier | 357e9be | 2012-08-01 11:00:14 -0700 | [diff] [blame] | 1861 | { |
Mathieu Chartier | c22c59e | 2014-02-24 15:16:06 -0800 | [diff] [blame] | 1862 | { |
| 1863 | WriterMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| 1864 | heap->FlushAllocStack(); |
| 1865 | } |
Hiroshi Yamauchi | 90d7068 | 2014-02-20 16:17:30 -0800 | [diff] [blame] | 1866 | // Since FlushAllocStack() above resets the (active) allocation |
| 1867 | // stack. Need to revoke the thread-local allocation stacks that |
| 1868 | // point into it. |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 1869 | ScopedThreadSuspension sts(self, kNative); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 1870 | ScopedSuspendAll ssa(__FUNCTION__); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 1871 | heap->RevokeAllThreadLocalAllocationStacks(self); |
Mathieu Chartier | 357e9be | 2012-08-01 11:00:14 -0700 | [diff] [blame] | 1872 | } |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1873 | { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1874 | // Mark dex caches. |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1875 | dex_caches_.clear(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1876 | { |
Andreas Gampe | cc1b535 | 2016-12-01 16:58:38 -0800 | [diff] [blame] | 1877 | ReaderMutexLock mu(self, *Locks::dex_lock_); |
Hiroshi Yamauchi | 04302db | 2015-11-11 23:45:34 -0800 | [diff] [blame] | 1878 | for (const ClassLinker::DexCacheData& data : class_linker->GetDexCachesData()) { |
Mathieu Chartier | c4f3925 | 2016-10-05 18:32:08 -0700 | [diff] [blame] | 1879 | ObjPtr<mirror::DexCache> dex_cache = |
| 1880 | ObjPtr<mirror::DexCache>::DownCast(self->DecodeJObject(data.weak_root)); |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1881 | if (dex_cache != nullptr) { |
Mathieu Chartier | c4f3925 | 2016-10-05 18:32:08 -0700 | [diff] [blame] | 1882 | dex_caches_.insert(dex_cache.Ptr()); |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1883 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1884 | } |
| 1885 | } |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1886 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1887 | // Dump the normal objects before ArtMethods. |
| 1888 | image_space_.GetLiveBitmap()->Walk(ImageDumper::Callback, this); |
| 1889 | indent_os << "\n"; |
| 1890 | // TODO: Dump fields. |
| 1891 | // Dump methods after. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1892 | DumpArtMethodVisitor visitor(this); |
Mathieu Chartier | e42888f | 2016-04-14 10:49:19 -0700 | [diff] [blame] | 1893 | image_header_.VisitPackedArtMethods(&visitor, |
| 1894 | image_space_.Begin(), |
| 1895 | image_header_.GetPointerSize()); |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1896 | // Dump the large objects separately. |
Mathieu Chartier | bbd695c | 2014-04-16 09:48:48 -0700 | [diff] [blame] | 1897 | heap->GetLargeObjectsSpace()->GetLiveBitmap()->Walk(ImageDumper::Callback, this); |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1898 | indent_os << "\n"; |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 1899 | } |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1900 | os << "STATS:\n" << std::flush; |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 1901 | std::unique_ptr<File> file(OS::OpenFileForReading(image_filename.c_str())); |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 1902 | size_t data_size = image_header_.GetDataSize(); // stored size in file. |
| 1903 | if (file == nullptr) { |
Brian Carlstrom | 2ec6520 | 2014-03-03 15:16:37 -0800 | [diff] [blame] | 1904 | LOG(WARNING) << "Failed to find image in " << image_filename; |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 1905 | } else { |
Brian Carlstrom | 2ec6520 | 2014-03-03 15:16:37 -0800 | [diff] [blame] | 1906 | stats_.file_bytes = file->GetLength(); |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 1907 | // If the image is compressed, adjust to decompressed size. |
| 1908 | size_t uncompressed_size = image_header_.GetImageSize() - sizeof(ImageHeader); |
| 1909 | if (image_header_.GetStorageMode() == ImageHeader::kStorageModeUncompressed) { |
| 1910 | DCHECK_EQ(uncompressed_size, data_size) << "Sizes should match for uncompressed image"; |
| 1911 | } |
| 1912 | stats_.file_bytes += uncompressed_size - data_size; |
Brian Carlstrom | 6f27775 | 2013-09-30 17:56:45 -0700 | [diff] [blame] | 1913 | } |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 1914 | size_t header_bytes = sizeof(ImageHeader); |
Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1915 | const auto& object_section = image_header_.GetImageSection(ImageHeader::kSectionObjects); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1916 | const auto& field_section = image_header_.GetImageSection(ImageHeader::kSectionArtFields); |
| 1917 | const auto& method_section = image_header_.GetMethodsSection(); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1918 | const auto& dex_cache_arrays_section = image_header_.GetImageSection( |
| 1919 | ImageHeader::kSectionDexCacheArrays); |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1920 | const auto& intern_section = image_header_.GetImageSection( |
| 1921 | ImageHeader::kSectionInternedStrings); |
Mathieu Chartier | 208a5cb | 2015-12-02 15:44:07 -0800 | [diff] [blame] | 1922 | const auto& class_table_section = image_header_.GetImageSection( |
| 1923 | ImageHeader::kSectionClassTable); |
Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1924 | const auto& bitmap_section = image_header_.GetImageSection(ImageHeader::kSectionImageBitmap); |
| 1925 | |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 1926 | stats_.header_bytes = header_bytes; |
Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1927 | |
| 1928 | // Objects are kObjectAlignment-aligned. |
| 1929 | // CHECK_EQ(RoundUp(header_bytes, kObjectAlignment), object_section.Offset()); |
| 1930 | if (object_section.Offset() > header_bytes) { |
| 1931 | stats_.alignment_bytes += object_section.Offset() - header_bytes; |
| 1932 | } |
| 1933 | |
| 1934 | // Field section is 4-byte aligned. |
| 1935 | constexpr size_t kFieldSectionAlignment = 4U; |
| 1936 | uint32_t end_objects = object_section.Offset() + object_section.Size(); |
| 1937 | CHECK_EQ(RoundUp(end_objects, kFieldSectionAlignment), field_section.Offset()); |
| 1938 | stats_.alignment_bytes += field_section.Offset() - end_objects; |
| 1939 | |
| 1940 | // Method section is 4/8 byte aligned depending on target. Just check for 4-byte alignment. |
| 1941 | uint32_t end_fields = field_section.Offset() + field_section.Size(); |
| 1942 | CHECK_ALIGNED(method_section.Offset(), 4); |
| 1943 | stats_.alignment_bytes += method_section.Offset() - end_fields; |
| 1944 | |
| 1945 | // Dex cache arrays section is aligned depending on the target. Just check for 4-byte alignment. |
| 1946 | uint32_t end_methods = method_section.Offset() + method_section.Size(); |
| 1947 | CHECK_ALIGNED(dex_cache_arrays_section.Offset(), 4); |
| 1948 | stats_.alignment_bytes += dex_cache_arrays_section.Offset() - end_methods; |
| 1949 | |
| 1950 | // Intern table is 8-byte aligned. |
| 1951 | uint32_t end_caches = dex_cache_arrays_section.Offset() + dex_cache_arrays_section.Size(); |
| 1952 | CHECK_EQ(RoundUp(end_caches, 8U), intern_section.Offset()); |
| 1953 | stats_.alignment_bytes += intern_section.Offset() - end_caches; |
| 1954 | |
| 1955 | // Add space between intern table and class table. |
| 1956 | uint32_t end_intern = intern_section.Offset() + intern_section.Size(); |
| 1957 | stats_.alignment_bytes += class_table_section.Offset() - end_intern; |
| 1958 | |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 1959 | // Add space between end of image data and bitmap. Expect the bitmap to be page-aligned. |
| 1960 | const size_t bitmap_offset = sizeof(ImageHeader) + data_size; |
Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1961 | CHECK_ALIGNED(bitmap_section.Offset(), kPageSize); |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 1962 | stats_.alignment_bytes += RoundUp(bitmap_offset, kPageSize) - bitmap_offset; |
Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1963 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1964 | stats_.bitmap_bytes += bitmap_section.Size(); |
| 1965 | stats_.art_field_bytes += field_section.Size(); |
Vladimir Marko | cf36d49 | 2015-08-12 19:27:26 +0100 | [diff] [blame] | 1966 | stats_.art_method_bytes += method_section.Size(); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1967 | stats_.dex_cache_arrays_bytes += dex_cache_arrays_section.Size(); |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1968 | stats_.interned_strings_bytes += intern_section.Size(); |
Mathieu Chartier | 208a5cb | 2015-12-02 15:44:07 -0800 | [diff] [blame] | 1969 | stats_.class_table_bytes += class_table_section.Size(); |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 1970 | stats_.Dump(os, indent_os); |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1971 | os << "\n"; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 1972 | |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 1973 | os << std::flush; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 1974 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 1975 | return oat_dumper_->Dump(os); |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 1976 | } |
| 1977 | |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1978 | private: |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1979 | class DumpArtMethodVisitor : public ArtMethodVisitor { |
| 1980 | public: |
| 1981 | explicit DumpArtMethodVisitor(ImageDumper* image_dumper) : image_dumper_(image_dumper) {} |
| 1982 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1983 | virtual void Visit(ArtMethod* method) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1984 | std::ostream& indent_os = image_dumper_->vios_.Stream(); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1985 | indent_os << method << " " << " ArtMethod: " << ArtMethod::PrettyMethod(method) << "\n"; |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 1986 | image_dumper_->DumpMethod(method, indent_os); |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1987 | indent_os << "\n"; |
| 1988 | } |
| 1989 | |
| 1990 | private: |
| 1991 | ImageDumper* const image_dumper_; |
| 1992 | }; |
| 1993 | |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1994 | static void PrettyObjectValue(std::ostream& os, |
| 1995 | ObjPtr<mirror::Class> type, |
| 1996 | ObjPtr<mirror::Object> value) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1997 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1998 | CHECK(type != nullptr); |
| 1999 | if (value == nullptr) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2000 | os << StringPrintf("null %s\n", type->PrettyDescriptor().c_str()); |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2001 | } else if (type->IsStringClass()) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2002 | mirror::String* string = value->AsString(); |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2003 | os << StringPrintf("%p String: %s\n", string, |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 2004 | PrintableString(string->ToModifiedUtf8().c_str()).c_str()); |
Ian Rogers | 64b6d14 | 2012-10-29 16:34:15 -0700 | [diff] [blame] | 2005 | } else if (type->IsClassClass()) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2006 | mirror::Class* klass = value->AsClass(); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2007 | os << StringPrintf("%p Class: %s\n", klass, mirror::Class::PrettyDescriptor(klass).c_str()); |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2008 | } else { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2009 | os << StringPrintf("%p %s\n", value.Ptr(), type->PrettyDescriptor().c_str()); |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2010 | } |
| 2011 | } |
| 2012 | |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2013 | static void PrintField(std::ostream& os, ArtField* field, ObjPtr<mirror::Object> obj) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2014 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 2015 | os << StringPrintf("%s: ", field->GetName()); |
Ian Rogers | 08f1f50 | 2014-12-02 15:04:37 -0800 | [diff] [blame] | 2016 | switch (field->GetTypeAsPrimitiveType()) { |
| 2017 | case Primitive::kPrimLong: |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 2018 | os << StringPrintf("%" PRId64 " (0x%" PRIx64 ")\n", field->Get64(obj), field->Get64(obj)); |
Ian Rogers | 08f1f50 | 2014-12-02 15:04:37 -0800 | [diff] [blame] | 2019 | break; |
| 2020 | case Primitive::kPrimDouble: |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2021 | os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj)); |
Ian Rogers | 08f1f50 | 2014-12-02 15:04:37 -0800 | [diff] [blame] | 2022 | break; |
| 2023 | case Primitive::kPrimFloat: |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2024 | os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj)); |
Ian Rogers | 08f1f50 | 2014-12-02 15:04:37 -0800 | [diff] [blame] | 2025 | break; |
| 2026 | case Primitive::kPrimInt: |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2027 | os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj)); |
Ian Rogers | 08f1f50 | 2014-12-02 15:04:37 -0800 | [diff] [blame] | 2028 | break; |
| 2029 | case Primitive::kPrimChar: |
Fred Shih | 37f05ef | 2014-07-16 18:38:08 -0700 | [diff] [blame] | 2030 | os << StringPrintf("%u (0x%x)\n", field->GetChar(obj), field->GetChar(obj)); |
Ian Rogers | 08f1f50 | 2014-12-02 15:04:37 -0800 | [diff] [blame] | 2031 | break; |
| 2032 | case Primitive::kPrimShort: |
Fred Shih | 37f05ef | 2014-07-16 18:38:08 -0700 | [diff] [blame] | 2033 | os << StringPrintf("%d (0x%x)\n", field->GetShort(obj), field->GetShort(obj)); |
Ian Rogers | 08f1f50 | 2014-12-02 15:04:37 -0800 | [diff] [blame] | 2034 | break; |
| 2035 | case Primitive::kPrimBoolean: |
Roland Levillain | 5e8d5f0 | 2016-10-18 18:03:43 +0100 | [diff] [blame] | 2036 | os << StringPrintf("%s (0x%x)\n", field->GetBoolean(obj) ? "true" : "false", |
Fred Shih | 37f05ef | 2014-07-16 18:38:08 -0700 | [diff] [blame] | 2037 | field->GetBoolean(obj)); |
Ian Rogers | 08f1f50 | 2014-12-02 15:04:37 -0800 | [diff] [blame] | 2038 | break; |
| 2039 | case Primitive::kPrimByte: |
Fred Shih | 37f05ef | 2014-07-16 18:38:08 -0700 | [diff] [blame] | 2040 | os << StringPrintf("%d (0x%x)\n", field->GetByte(obj), field->GetByte(obj)); |
Ian Rogers | 08f1f50 | 2014-12-02 15:04:37 -0800 | [diff] [blame] | 2041 | break; |
| 2042 | case Primitive::kPrimNot: { |
| 2043 | // Get the value, don't compute the type unless it is non-null as we don't want |
| 2044 | // to cause class loading. |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2045 | ObjPtr<mirror::Object> value = field->GetObj(obj); |
Ian Rogers | 08f1f50 | 2014-12-02 15:04:37 -0800 | [diff] [blame] | 2046 | if (value == nullptr) { |
| 2047 | os << StringPrintf("null %s\n", PrettyDescriptor(field->GetTypeDescriptor()).c_str()); |
Ian Rogers | 50239c7 | 2013-06-17 14:53:22 -0700 | [diff] [blame] | 2048 | } else { |
Ian Rogers | 08f1f50 | 2014-12-02 15:04:37 -0800 | [diff] [blame] | 2049 | // Grab the field type without causing resolution. |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2050 | ObjPtr<mirror::Class> field_type = field->GetType<false>(); |
Ian Rogers | 08f1f50 | 2014-12-02 15:04:37 -0800 | [diff] [blame] | 2051 | if (field_type != nullptr) { |
| 2052 | PrettyObjectValue(os, field_type, value); |
| 2053 | } else { |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2054 | os << StringPrintf("%p %s\n", |
Mathieu Chartier | 1cc62e4 | 2016-10-03 18:01:28 -0700 | [diff] [blame] | 2055 | value.Ptr(), |
Ian Rogers | 08f1f50 | 2014-12-02 15:04:37 -0800 | [diff] [blame] | 2056 | PrettyDescriptor(field->GetTypeDescriptor()).c_str()); |
| 2057 | } |
Ian Rogers | 50239c7 | 2013-06-17 14:53:22 -0700 | [diff] [blame] | 2058 | } |
Ian Rogers | 08f1f50 | 2014-12-02 15:04:37 -0800 | [diff] [blame] | 2059 | break; |
Ian Rogers | 48efc2b | 2012-08-27 17:20:31 -0700 | [diff] [blame] | 2060 | } |
Ian Rogers | 08f1f50 | 2014-12-02 15:04:37 -0800 | [diff] [blame] | 2061 | default: |
| 2062 | os << "unexpected field type: " << field->GetTypeDescriptor() << "\n"; |
| 2063 | break; |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2064 | } |
| 2065 | } |
| 2066 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2067 | static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2068 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2069 | mirror::Class* super = klass->GetSuperClass(); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2070 | if (super != nullptr) { |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2071 | DumpFields(os, obj, super); |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2072 | } |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 2073 | for (ArtField& field : klass->GetIFields()) { |
| 2074 | PrintField(os, &field, obj); |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2075 | } |
| 2076 | } |
| 2077 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2078 | bool InDumpSpace(const mirror::Object* object) { |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2079 | return image_space_.Contains(object); |
Brian Carlstrom | f8bbb84 | 2012-03-14 03:01:42 -0700 | [diff] [blame] | 2080 | } |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2081 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2082 | const void* GetQuickOatCodeBegin(ArtMethod* m) REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 2083 | const void* quick_code = m->GetEntryPointFromQuickCompiledCodePtrSize( |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2084 | image_header_.GetPointerSize()); |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 2085 | if (Runtime::Current()->GetClassLinker()->IsQuickResolutionStub(quick_code)) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 2086 | quick_code = oat_dumper_->GetQuickOatCode(m); |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2087 | } |
Brian Carlstrom | f8bbb84 | 2012-03-14 03:01:42 -0700 | [diff] [blame] | 2088 | if (oat_dumper_->GetInstructionSet() == kThumb2) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 2089 | quick_code = reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(quick_code) & ~0x1); |
Brian Carlstrom | f8bbb84 | 2012-03-14 03:01:42 -0700 | [diff] [blame] | 2090 | } |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 2091 | return quick_code; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2092 | } |
| 2093 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2094 | uint32_t GetQuickOatCodeSize(ArtMethod* m) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2095 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 2096 | const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetQuickOatCodeBegin(m)); |
| 2097 | if (oat_code_begin == nullptr) { |
Brian Carlstrom | f8bbb84 | 2012-03-14 03:01:42 -0700 | [diff] [blame] | 2098 | return 0; |
| 2099 | } |
| 2100 | return oat_code_begin[-1]; |
| 2101 | } |
| 2102 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2103 | const void* GetQuickOatCodeEnd(ArtMethod* m) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2104 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 2105 | const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetQuickOatCodeBegin(m)); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2106 | if (oat_code_begin == nullptr) { |
| 2107 | return nullptr; |
Brian Carlstrom | f8bbb84 | 2012-03-14 03:01:42 -0700 | [diff] [blame] | 2108 | } |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 2109 | return oat_code_begin + GetQuickOatCodeSize(m); |
Brian Carlstrom | f8bbb84 | 2012-03-14 03:01:42 -0700 | [diff] [blame] | 2110 | } |
| 2111 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2112 | static void Callback(mirror::Object* obj, void* arg) REQUIRES_SHARED(Locks::mutator_lock_) { |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2113 | DCHECK(obj != nullptr); |
| 2114 | DCHECK(arg != nullptr); |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2115 | ImageDumper* state = reinterpret_cast<ImageDumper*>(arg); |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 2116 | if (!state->InDumpSpace(obj)) { |
| 2117 | return; |
| 2118 | } |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2119 | |
| 2120 | size_t object_bytes = obj->SizeOf(); |
| 2121 | size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes; |
| 2122 | state->stats_.object_bytes += object_bytes; |
| 2123 | state->stats_.alignment_bytes += alignment_bytes; |
| 2124 | |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 2125 | std::ostream& os = state->vios_.Stream(); |
| 2126 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2127 | mirror::Class* obj_class = obj->GetClass(); |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2128 | if (obj_class->IsArrayClass()) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2129 | os << StringPrintf("%p: %s length:%d\n", obj, obj_class->PrettyDescriptor().c_str(), |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2130 | obj->AsArray()->GetLength()); |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2131 | } else if (obj->IsClass()) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2132 | mirror::Class* klass = obj->AsClass(); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2133 | os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, |
| 2134 | mirror::Class::PrettyDescriptor(klass).c_str()) |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2135 | << klass->GetStatus() << ")\n"; |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2136 | } else if (obj_class->IsStringClass()) { |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2137 | os << StringPrintf("%p: java.lang.String %s\n", obj, |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 2138 | PrintableString(obj->AsString()->ToModifiedUtf8().c_str()).c_str()); |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2139 | } else { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2140 | os << StringPrintf("%p: %s\n", obj, obj_class->PrettyDescriptor().c_str()); |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2141 | } |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 2142 | ScopedIndentation indent1(&state->vios_); |
| 2143 | DumpFields(os, obj, obj_class); |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 2144 | const PointerSize image_pointer_size = state->image_header_.GetPointerSize(); |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2145 | if (obj->IsObjectArray()) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2146 | auto* obj_array = obj->AsObjectArray<mirror::Object>(); |
| 2147 | for (int32_t i = 0, length = obj_array->GetLength(); i < length; i++) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2148 | mirror::Object* value = obj_array->Get(i); |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2149 | size_t run = 0; |
| 2150 | for (int32_t j = i + 1; j < length; j++) { |
| 2151 | if (value == obj_array->Get(j)) { |
| 2152 | run++; |
| 2153 | } else { |
| 2154 | break; |
| 2155 | } |
| 2156 | } |
| 2157 | if (run == 0) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 2158 | os << StringPrintf("%d: ", i); |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2159 | } else { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 2160 | os << StringPrintf("%d to %zd: ", i, i + run); |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2161 | i = i + run; |
| 2162 | } |
Brian Carlstrom | 2ec6520 | 2014-03-03 15:16:37 -0800 | [diff] [blame] | 2163 | mirror::Class* value_class = |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2164 | (value == nullptr) ? obj_class->GetComponentType() : value->GetClass(); |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 2165 | PrettyObjectValue(os, value_class, value); |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2166 | } |
| 2167 | } else if (obj->IsClass()) { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2168 | mirror::Class* klass = obj->AsClass(); |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 2169 | if (klass->NumStaticFields() != 0) { |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 2170 | os << "STATICS:\n"; |
| 2171 | ScopedIndentation indent2(&state->vios_); |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 2172 | for (ArtField& field : klass->GetSFields()) { |
| 2173 | PrintField(os, &field, field.GetDeclaringClass()); |
Ian Rogers | d5b3260 | 2012-02-26 16:40:04 -0800 | [diff] [blame] | 2174 | } |
| 2175 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2176 | } else { |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2177 | auto it = state->dex_caches_.find(obj); |
| 2178 | if (it != state->dex_caches_.end()) { |
| 2179 | auto* dex_cache = down_cast<mirror::DexCache*>(obj); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2180 | const auto& field_section = state->image_header_.GetImageSection( |
| 2181 | ImageHeader::kSectionArtFields); |
| 2182 | const auto& method_section = state->image_header_.GetMethodsSection(); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2183 | size_t num_methods = dex_cache->NumResolvedMethods(); |
| 2184 | if (num_methods != 0u) { |
Nicolas Geoffray | c6df1e3 | 2016-07-04 10:15:47 +0100 | [diff] [blame] | 2185 | os << "Methods (size=" << num_methods << "):\n"; |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2186 | ScopedIndentation indent2(&state->vios_); |
| 2187 | auto* resolved_methods = dex_cache->GetResolvedMethods(); |
| 2188 | for (size_t i = 0, length = dex_cache->NumResolvedMethods(); i < length; ++i) { |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2189 | auto* elem = mirror::DexCache::GetElementPtrSize(resolved_methods, |
| 2190 | i, |
| 2191 | image_pointer_size); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2192 | size_t run = 0; |
| 2193 | for (size_t j = i + 1; |
Nicolas Geoffray | c6df1e3 | 2016-07-04 10:15:47 +0100 | [diff] [blame] | 2194 | j != length && elem == mirror::DexCache::GetElementPtrSize(resolved_methods, |
| 2195 | j, |
| 2196 | image_pointer_size); |
| 2197 | ++j) { |
| 2198 | ++run; |
| 2199 | } |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2200 | if (run == 0) { |
| 2201 | os << StringPrintf("%zd: ", i); |
| 2202 | } else { |
| 2203 | os << StringPrintf("%zd to %zd: ", i, i + run); |
| 2204 | i = i + run; |
| 2205 | } |
| 2206 | std::string msg; |
| 2207 | if (elem == nullptr) { |
| 2208 | msg = "null"; |
| 2209 | } else if (method_section.Contains( |
| 2210 | reinterpret_cast<uint8_t*>(elem) - state->image_space_.Begin())) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2211 | msg = reinterpret_cast<ArtMethod*>(elem)->PrettyMethod(); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2212 | } else { |
| 2213 | msg = "<not in method section>"; |
| 2214 | } |
| 2215 | os << StringPrintf("%p %s\n", elem, msg.c_str()); |
Ian Rogers | 0d2d378 | 2012-04-10 11:09:18 -0700 | [diff] [blame] | 2216 | } |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2217 | } |
| 2218 | size_t num_fields = dex_cache->NumResolvedFields(); |
| 2219 | if (num_fields != 0u) { |
Nicolas Geoffray | c6df1e3 | 2016-07-04 10:15:47 +0100 | [diff] [blame] | 2220 | os << "Fields (size=" << num_fields << "):\n"; |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2221 | ScopedIndentation indent2(&state->vios_); |
| 2222 | auto* resolved_fields = dex_cache->GetResolvedFields(); |
| 2223 | for (size_t i = 0, length = dex_cache->NumResolvedFields(); i < length; ++i) { |
Vladimir Marko | f44d36c | 2017-03-14 14:18:46 +0000 | [diff] [blame] | 2224 | auto* elem = mirror::DexCache::GetNativePairPtrSize( |
| 2225 | resolved_fields, i, image_pointer_size).object; |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2226 | size_t run = 0; |
| 2227 | for (size_t j = i + 1; |
Vladimir Marko | f44d36c | 2017-03-14 14:18:46 +0000 | [diff] [blame] | 2228 | j != length && |
| 2229 | elem == mirror::DexCache::GetNativePairPtrSize( |
| 2230 | resolved_fields, j, image_pointer_size).object; |
Nicolas Geoffray | c6df1e3 | 2016-07-04 10:15:47 +0100 | [diff] [blame] | 2231 | ++j) { |
| 2232 | ++run; |
| 2233 | } |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2234 | if (run == 0) { |
| 2235 | os << StringPrintf("%zd: ", i); |
| 2236 | } else { |
| 2237 | os << StringPrintf("%zd to %zd: ", i, i + run); |
| 2238 | i = i + run; |
| 2239 | } |
| 2240 | std::string msg; |
| 2241 | if (elem == nullptr) { |
| 2242 | msg = "null"; |
| 2243 | } else if (field_section.Contains( |
| 2244 | reinterpret_cast<uint8_t*>(elem) - state->image_space_.Begin())) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2245 | msg = reinterpret_cast<ArtField*>(elem)->PrettyField(); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2246 | } else { |
| 2247 | msg = "<not in field section>"; |
| 2248 | } |
| 2249 | os << StringPrintf("%p %s\n", elem, msg.c_str()); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2250 | } |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2251 | } |
Nicolas Geoffray | c6df1e3 | 2016-07-04 10:15:47 +0100 | [diff] [blame] | 2252 | size_t num_types = dex_cache->NumResolvedTypes(); |
| 2253 | if (num_types != 0u) { |
| 2254 | os << "Types (size=" << num_types << "):\n"; |
| 2255 | ScopedIndentation indent2(&state->vios_); |
| 2256 | auto* resolved_types = dex_cache->GetResolvedTypes(); |
| 2257 | for (size_t i = 0; i < num_types; ++i) { |
Vladimir Marko | 8d6768d | 2017-03-14 10:13:21 +0000 | [diff] [blame] | 2258 | auto pair = resolved_types[i].load(std::memory_order_relaxed); |
Nicolas Geoffray | c6df1e3 | 2016-07-04 10:15:47 +0100 | [diff] [blame] | 2259 | size_t run = 0; |
Vladimir Marko | 8d6768d | 2017-03-14 10:13:21 +0000 | [diff] [blame] | 2260 | for (size_t j = i + 1; j != num_types; ++j) { |
| 2261 | auto other_pair = resolved_types[j].load(std::memory_order_relaxed); |
| 2262 | if (pair.index != other_pair.index || |
| 2263 | pair.object.Read() != other_pair.object.Read()) { |
| 2264 | break; |
| 2265 | } |
Nicolas Geoffray | c6df1e3 | 2016-07-04 10:15:47 +0100 | [diff] [blame] | 2266 | ++run; |
| 2267 | } |
| 2268 | if (run == 0) { |
| 2269 | os << StringPrintf("%zd: ", i); |
| 2270 | } else { |
| 2271 | os << StringPrintf("%zd to %zd: ", i, i + run); |
| 2272 | i = i + run; |
| 2273 | } |
| 2274 | std::string msg; |
Vladimir Marko | 8d6768d | 2017-03-14 10:13:21 +0000 | [diff] [blame] | 2275 | auto* elem = pair.object.Read(); |
Nicolas Geoffray | c6df1e3 | 2016-07-04 10:15:47 +0100 | [diff] [blame] | 2276 | if (elem == nullptr) { |
| 2277 | msg = "null"; |
| 2278 | } else { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2279 | msg = elem->PrettyClass(); |
Nicolas Geoffray | c6df1e3 | 2016-07-04 10:15:47 +0100 | [diff] [blame] | 2280 | } |
Vladimir Marko | 8d6768d | 2017-03-14 10:13:21 +0000 | [diff] [blame] | 2281 | os << StringPrintf("%p %u %s\n", elem, pair.index, msg.c_str()); |
Nicolas Geoffray | c6df1e3 | 2016-07-04 10:15:47 +0100 | [diff] [blame] | 2282 | } |
| 2283 | } |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 2284 | } |
| 2285 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 2286 | std::string temp; |
| 2287 | state->stats_.Update(obj_class->GetDescriptor(&temp), object_bytes); |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 2288 | } |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2289 | |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2290 | void DumpMethod(ArtMethod* method, std::ostream& indent_os) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2291 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2292 | DCHECK(method != nullptr); |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2293 | const void* quick_oat_code_begin = GetQuickOatCodeBegin(method); |
| 2294 | const void* quick_oat_code_end = GetQuickOatCodeEnd(method); |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 2295 | const PointerSize pointer_size = image_header_.GetPointerSize(); |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 2296 | OatQuickMethodHeader* method_header = reinterpret_cast<OatQuickMethodHeader*>( |
| 2297 | reinterpret_cast<uintptr_t>(quick_oat_code_begin) - sizeof(OatQuickMethodHeader)); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2298 | if (method->IsNative()) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2299 | bool first_occurrence; |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2300 | uint32_t quick_oat_code_size = GetQuickOatCodeSize(method); |
| 2301 | ComputeOatSize(quick_oat_code_begin, &first_occurrence); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2302 | if (first_occurrence) { |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2303 | stats_.native_to_managed_code_bytes += quick_oat_code_size; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2304 | } |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2305 | if (quick_oat_code_begin != method->GetEntryPointFromQuickCompiledCodePtrSize( |
| 2306 | image_header_.GetPointerSize())) { |
Nicolas Geoffray | 6bc4374 | 2015-10-12 18:11:10 +0100 | [diff] [blame] | 2307 | indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code_begin); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2308 | } |
Mathieu Chartier | e42888f | 2016-04-14 10:49:19 -0700 | [diff] [blame] | 2309 | } else if (method->IsAbstract() || method->IsClassInitializer()) { |
Nicolas Geoffray | 796d630 | 2016-03-13 22:22:31 +0000 | [diff] [blame] | 2310 | // Don't print information for these. |
Mathieu Chartier | e42888f | 2016-04-14 10:49:19 -0700 | [diff] [blame] | 2311 | } else if (method->IsRuntimeMethod()) { |
| 2312 | ImtConflictTable* table = method->GetImtConflictTable(image_header_.GetPointerSize()); |
| 2313 | if (table != nullptr) { |
| 2314 | indent_os << "IMT conflict table " << table << " method: "; |
| 2315 | for (size_t i = 0, count = table->NumEntries(pointer_size); i < count; ++i) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2316 | indent_os << ArtMethod::PrettyMethod(table->GetImplementationMethod(i, pointer_size)) |
| 2317 | << " "; |
Mathieu Chartier | e42888f | 2016-04-14 10:49:19 -0700 | [diff] [blame] | 2318 | } |
| 2319 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2320 | } else { |
| 2321 | const DexFile::CodeItem* code_item = method->GetCodeItem(); |
| 2322 | size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2; |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2323 | stats_.dex_instruction_bytes += dex_instruction_bytes; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2324 | |
| 2325 | bool first_occurrence; |
Roland Levillain | 6d7f179 | 2015-07-02 10:59:15 +0100 | [diff] [blame] | 2326 | size_t vmap_table_bytes = 0u; |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 2327 | if (!method_header->IsOptimized()) { |
Roland Levillain | 6d7f179 | 2015-07-02 10:59:15 +0100 | [diff] [blame] | 2328 | // Method compiled with the optimizing compiler have no vmap table. |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2329 | vmap_table_bytes = ComputeOatSize(method_header->GetVmapTable(), &first_occurrence); |
Roland Levillain | 6d7f179 | 2015-07-02 10:59:15 +0100 | [diff] [blame] | 2330 | if (first_occurrence) { |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2331 | stats_.vmap_table_bytes += vmap_table_bytes; |
Roland Levillain | 6d7f179 | 2015-07-02 10:59:15 +0100 | [diff] [blame] | 2332 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2333 | } |
| 2334 | |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2335 | uint32_t quick_oat_code_size = GetQuickOatCodeSize(method); |
| 2336 | ComputeOatSize(quick_oat_code_begin, &first_occurrence); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2337 | if (first_occurrence) { |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2338 | stats_.managed_code_bytes += quick_oat_code_size; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2339 | if (method->IsConstructor()) { |
| 2340 | if (method->IsStatic()) { |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2341 | stats_.class_initializer_code_bytes += quick_oat_code_size; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2342 | } else if (dex_instruction_bytes > kLargeConstructorDexBytes) { |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2343 | stats_.large_initializer_code_bytes += quick_oat_code_size; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2344 | } |
| 2345 | } else if (dex_instruction_bytes > kLargeMethodDexBytes) { |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2346 | stats_.large_method_code_bytes += quick_oat_code_size; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2347 | } |
| 2348 | } |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2349 | stats_.managed_code_bytes_ignoring_deduplication += quick_oat_code_size; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2350 | |
Igor Murashkin | 7617abd | 2015-07-10 18:27:47 -0700 | [diff] [blame] | 2351 | uint32_t method_access_flags = method->GetAccessFlags(); |
| 2352 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2353 | indent_os << StringPrintf("OAT CODE: %p-%p\n", quick_oat_code_begin, quick_oat_code_end); |
Vladimir Marko | 9d07e3d | 2016-03-31 12:02:28 +0100 | [diff] [blame] | 2354 | indent_os << StringPrintf("SIZE: Dex Instructions=%zd StackMaps=%zd AccessFlags=0x%x\n", |
| 2355 | dex_instruction_bytes, |
| 2356 | vmap_table_bytes, |
Igor Murashkin | 7617abd | 2015-07-10 18:27:47 -0700 | [diff] [blame] | 2357 | method_access_flags); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2358 | |
Vladimir Marko | 9d07e3d | 2016-03-31 12:02:28 +0100 | [diff] [blame] | 2359 | size_t total_size = dex_instruction_bytes + |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2360 | vmap_table_bytes + quick_oat_code_size + ArtMethod::Size(image_header_.GetPointerSize()); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2361 | |
| 2362 | double expansion = |
| 2363 | static_cast<double>(quick_oat_code_size) / static_cast<double>(dex_instruction_bytes); |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2364 | stats_.ComputeOutliers(total_size, expansion, method); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2365 | } |
| 2366 | } |
| 2367 | |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2368 | std::set<const void*> already_seen_; |
| 2369 | // Compute the size of the given data within the oat file and whether this is the first time |
| 2370 | // this data has been requested |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 2371 | size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) { |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2372 | if (already_seen_.count(oat_data) == 0) { |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 2373 | *first_occurrence = true; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2374 | already_seen_.insert(oat_data); |
| 2375 | } else { |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 2376 | *first_occurrence = false; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2377 | } |
| 2378 | return oat_dumper_->ComputeSize(oat_data); |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2379 | } |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2380 | |
| 2381 | public: |
| 2382 | struct Stats { |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2383 | size_t oat_file_bytes; |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2384 | size_t file_bytes; |
| 2385 | |
| 2386 | size_t header_bytes; |
| 2387 | size_t object_bytes; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2388 | size_t art_field_bytes; |
| 2389 | size_t art_method_bytes; |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2390 | size_t dex_cache_arrays_bytes; |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 2391 | size_t interned_strings_bytes; |
Mathieu Chartier | 208a5cb | 2015-12-02 15:44:07 -0800 | [diff] [blame] | 2392 | size_t class_table_bytes; |
Mathieu Chartier | 3232709 | 2013-08-30 14:04:08 -0700 | [diff] [blame] | 2393 | size_t bitmap_bytes; |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2394 | size_t alignment_bytes; |
| 2395 | |
| 2396 | size_t managed_code_bytes; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2397 | size_t managed_code_bytes_ignoring_deduplication; |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2398 | size_t native_to_managed_code_bytes; |
Ian Rogers | 0d2d378 | 2012-04-10 11:09:18 -0700 | [diff] [blame] | 2399 | size_t class_initializer_code_bytes; |
| 2400 | size_t large_initializer_code_bytes; |
| 2401 | size_t large_method_code_bytes; |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2402 | |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2403 | size_t vmap_table_bytes; |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2404 | |
| 2405 | size_t dex_instruction_bytes; |
| 2406 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2407 | std::vector<ArtMethod*> method_outlier; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2408 | std::vector<size_t> method_outlier_size; |
| 2409 | std::vector<double> method_outlier_expansion; |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2410 | std::vector<std::pair<std::string, size_t>> oat_dex_file_sizes; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2411 | |
Roland Levillain | 3887c46 | 2015-08-12 18:15:42 +0100 | [diff] [blame] | 2412 | Stats() |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2413 | : oat_file_bytes(0), |
| 2414 | file_bytes(0), |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2415 | header_bytes(0), |
| 2416 | object_bytes(0), |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2417 | art_field_bytes(0), |
| 2418 | art_method_bytes(0), |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2419 | dex_cache_arrays_bytes(0), |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 2420 | interned_strings_bytes(0), |
Mathieu Chartier | 208a5cb | 2015-12-02 15:44:07 -0800 | [diff] [blame] | 2421 | class_table_bytes(0), |
Mathieu Chartier | 3232709 | 2013-08-30 14:04:08 -0700 | [diff] [blame] | 2422 | bitmap_bytes(0), |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2423 | alignment_bytes(0), |
| 2424 | managed_code_bytes(0), |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2425 | managed_code_bytes_ignoring_deduplication(0), |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2426 | native_to_managed_code_bytes(0), |
Ian Rogers | 0d2d378 | 2012-04-10 11:09:18 -0700 | [diff] [blame] | 2427 | class_initializer_code_bytes(0), |
| 2428 | large_initializer_code_bytes(0), |
| 2429 | large_method_code_bytes(0), |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2430 | vmap_table_bytes(0), |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2431 | dex_instruction_bytes(0) {} |
| 2432 | |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 2433 | struct SizeAndCount { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2434 | SizeAndCount(size_t bytes_in, size_t count_in) : bytes(bytes_in), count(count_in) {} |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 2435 | size_t bytes; |
| 2436 | size_t count; |
| 2437 | }; |
| 2438 | typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable; |
| 2439 | SizeAndCountTable sizes_and_counts; |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2440 | |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2441 | void Update(const char* descriptor, size_t object_bytes_in) { |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 2442 | SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor); |
| 2443 | if (it != sizes_and_counts.end()) { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2444 | it->second.bytes += object_bytes_in; |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 2445 | it->second.count += 1; |
| 2446 | } else { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2447 | sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes_in, 1)); |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 2448 | } |
| 2449 | } |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2450 | |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2451 | double PercentOfOatBytes(size_t size) { |
| 2452 | return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100; |
| 2453 | } |
| 2454 | |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2455 | double PercentOfFileBytes(size_t size) { |
| 2456 | return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100; |
| 2457 | } |
| 2458 | |
| 2459 | double PercentOfObjectBytes(size_t size) { |
| 2460 | return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100; |
| 2461 | } |
| 2462 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2463 | void ComputeOutliers(size_t total_size, double expansion, ArtMethod* method) { |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2464 | method_outlier_size.push_back(total_size); |
| 2465 | method_outlier_expansion.push_back(expansion); |
| 2466 | method_outlier.push_back(method); |
| 2467 | } |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2468 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2469 | void DumpOutliers(std::ostream& os) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2470 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2471 | size_t sum_of_sizes = 0; |
| 2472 | size_t sum_of_sizes_squared = 0; |
| 2473 | size_t sum_of_expansion = 0; |
| 2474 | size_t sum_of_expansion_squared = 0; |
| 2475 | size_t n = method_outlier_size.size(); |
Mathieu Chartier | 1ebf8d3 | 2016-06-09 11:51:27 -0700 | [diff] [blame] | 2476 | if (n <= 1) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2477 | return; |
| 2478 | } |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2479 | for (size_t i = 0; i < n; i++) { |
| 2480 | size_t cur_size = method_outlier_size[i]; |
| 2481 | sum_of_sizes += cur_size; |
| 2482 | sum_of_sizes_squared += cur_size * cur_size; |
| 2483 | double cur_expansion = method_outlier_expansion[i]; |
| 2484 | sum_of_expansion += cur_expansion; |
| 2485 | sum_of_expansion_squared += cur_expansion * cur_expansion; |
| 2486 | } |
| 2487 | size_t size_mean = sum_of_sizes / n; |
| 2488 | size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1); |
| 2489 | double expansion_mean = sum_of_expansion / n; |
| 2490 | double expansion_variance = |
| 2491 | (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1); |
| 2492 | |
| 2493 | // Dump methods whose size is a certain number of standard deviations from the mean |
| 2494 | size_t dumped_values = 0; |
| 2495 | size_t skipped_values = 0; |
| 2496 | for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations |
| 2497 | size_t cur_size_variance = i * i * size_variance; |
| 2498 | bool first = true; |
| 2499 | for (size_t j = 0; j < n; j++) { |
| 2500 | size_t cur_size = method_outlier_size[j]; |
| 2501 | if (cur_size > size_mean) { |
| 2502 | size_t cur_var = cur_size - size_mean; |
| 2503 | cur_var = cur_var * cur_var; |
| 2504 | if (cur_var > cur_size_variance) { |
| 2505 | if (dumped_values > 20) { |
| 2506 | if (i == 1) { |
| 2507 | skipped_values++; |
| 2508 | } else { |
| 2509 | i = 2; // jump to counting for 1 standard deviation |
| 2510 | break; |
| 2511 | } |
| 2512 | } else { |
| 2513 | if (first) { |
Elliott Hughes | c073b07 | 2012-05-24 19:29:17 -0700 | [diff] [blame] | 2514 | os << "\nBig methods (size > " << i << " standard deviations the norm):\n"; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2515 | first = false; |
| 2516 | } |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2517 | os << ArtMethod::PrettyMethod(method_outlier[j]) << " requires storage of " |
Elliott Hughes | c073b07 | 2012-05-24 19:29:17 -0700 | [diff] [blame] | 2518 | << PrettySize(cur_size) << "\n"; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2519 | method_outlier_size[j] = 0; // don't consider this method again |
| 2520 | dumped_values++; |
| 2521 | } |
| 2522 | } |
| 2523 | } |
| 2524 | } |
| 2525 | } |
| 2526 | if (skipped_values > 0) { |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2527 | os << "... skipped " << skipped_values |
Elliott Hughes | c073b07 | 2012-05-24 19:29:17 -0700 | [diff] [blame] | 2528 | << " methods with size > 1 standard deviation from the norm\n"; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2529 | } |
Elliott Hughes | c073b07 | 2012-05-24 19:29:17 -0700 | [diff] [blame] | 2530 | os << std::flush; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2531 | |
| 2532 | // Dump methods whose expansion is a certain number of standard deviations from the mean |
| 2533 | dumped_values = 0; |
| 2534 | skipped_values = 0; |
| 2535 | for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations |
| 2536 | double cur_expansion_variance = i * i * expansion_variance; |
| 2537 | bool first = true; |
| 2538 | for (size_t j = 0; j < n; j++) { |
| 2539 | double cur_expansion = method_outlier_expansion[j]; |
| 2540 | if (cur_expansion > expansion_mean) { |
| 2541 | size_t cur_var = cur_expansion - expansion_mean; |
| 2542 | cur_var = cur_var * cur_var; |
| 2543 | if (cur_var > cur_expansion_variance) { |
| 2544 | if (dumped_values > 20) { |
| 2545 | if (i == 1) { |
| 2546 | skipped_values++; |
| 2547 | } else { |
| 2548 | i = 2; // jump to counting for 1 standard deviation |
| 2549 | break; |
| 2550 | } |
| 2551 | } else { |
| 2552 | if (first) { |
| 2553 | os << "\nLarge expansion methods (size > " << i |
Elliott Hughes | c073b07 | 2012-05-24 19:29:17 -0700 | [diff] [blame] | 2554 | << " standard deviations the norm):\n"; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2555 | first = false; |
| 2556 | } |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2557 | os << ArtMethod::PrettyMethod(method_outlier[j]) << " expanded code by " |
Elliott Hughes | c073b07 | 2012-05-24 19:29:17 -0700 | [diff] [blame] | 2558 | << cur_expansion << "\n"; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2559 | method_outlier_expansion[j] = 0.0; // don't consider this method again |
| 2560 | dumped_values++; |
| 2561 | } |
| 2562 | } |
| 2563 | } |
| 2564 | } |
| 2565 | } |
| 2566 | if (skipped_values > 0) { |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2567 | os << "... skipped " << skipped_values |
Elliott Hughes | c073b07 | 2012-05-24 19:29:17 -0700 | [diff] [blame] | 2568 | << " methods with expansion > 1 standard deviation from the norm\n"; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2569 | } |
Elliott Hughes | c073b07 | 2012-05-24 19:29:17 -0700 | [diff] [blame] | 2570 | os << "\n" << std::flush; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2571 | } |
| 2572 | |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 2573 | void Dump(std::ostream& os, std::ostream& indent_os) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2574 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2575 | { |
| 2576 | os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n" |
| 2577 | << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n"; |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2578 | indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n" |
| 2579 | "object_bytes = %8zd (%2.0f%% of art file bytes)\n" |
| 2580 | "art_field_bytes = %8zd (%2.0f%% of art file bytes)\n" |
| 2581 | "art_method_bytes = %8zd (%2.0f%% of art file bytes)\n" |
| 2582 | "dex_cache_arrays_bytes = %8zd (%2.0f%% of art file bytes)\n" |
| 2583 | "interned_string_bytes = %8zd (%2.0f%% of art file bytes)\n" |
Mathieu Chartier | 208a5cb | 2015-12-02 15:44:07 -0800 | [diff] [blame] | 2584 | "class_table_bytes = %8zd (%2.0f%% of art file bytes)\n" |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2585 | "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n" |
| 2586 | "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n", |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2587 | header_bytes, PercentOfFileBytes(header_bytes), |
| 2588 | object_bytes, PercentOfFileBytes(object_bytes), |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2589 | art_field_bytes, PercentOfFileBytes(art_field_bytes), |
| 2590 | art_method_bytes, PercentOfFileBytes(art_method_bytes), |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2591 | dex_cache_arrays_bytes, |
| 2592 | PercentOfFileBytes(dex_cache_arrays_bytes), |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 2593 | interned_strings_bytes, |
| 2594 | PercentOfFileBytes(interned_strings_bytes), |
Mathieu Chartier | 208a5cb | 2015-12-02 15:44:07 -0800 | [diff] [blame] | 2595 | class_table_bytes, PercentOfFileBytes(class_table_bytes), |
Mathieu Chartier | 3232709 | 2013-08-30 14:04:08 -0700 | [diff] [blame] | 2596 | bitmap_bytes, PercentOfFileBytes(bitmap_bytes), |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2597 | alignment_bytes, PercentOfFileBytes(alignment_bytes)) |
| 2598 | << std::flush; |
Mathieu Chartier | 208a5cb | 2015-12-02 15:44:07 -0800 | [diff] [blame] | 2599 | CHECK_EQ(file_bytes, |
| 2600 | header_bytes + object_bytes + art_field_bytes + art_method_bytes + |
| 2601 | dex_cache_arrays_bytes + interned_strings_bytes + class_table_bytes + |
| 2602 | bitmap_bytes + alignment_bytes); |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2603 | } |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2604 | |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2605 | os << "object_bytes breakdown:\n"; |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2606 | size_t object_bytes_total = 0; |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 2607 | for (const auto& sizes_and_count : sizes_and_counts) { |
| 2608 | const std::string& descriptor(sizes_and_count.first); |
| 2609 | double average = static_cast<double>(sizes_and_count.second.bytes) / |
| 2610 | static_cast<double>(sizes_and_count.second.count); |
| 2611 | double percent = PercentOfObjectBytes(sizes_and_count.second.bytes); |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2612 | os << StringPrintf("%32s %8zd bytes %6zd instances " |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 2613 | "(%4.0f bytes/instance) %2.0f%% of object_bytes\n", |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 2614 | descriptor.c_str(), sizes_and_count.second.bytes, |
| 2615 | sizes_and_count.second.count, average, percent); |
| 2616 | object_bytes_total += sizes_and_count.second.bytes; |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2617 | } |
Elliott Hughes | c073b07 | 2012-05-24 19:29:17 -0700 | [diff] [blame] | 2618 | os << "\n" << std::flush; |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2619 | CHECK_EQ(object_bytes, object_bytes_total); |
| 2620 | |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2621 | os << StringPrintf("oat_file_bytes = %8zd\n" |
| 2622 | "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n" |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2623 | "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n" |
| 2624 | "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n" |
| 2625 | "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n" |
| 2626 | "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n", |
Ian Rogers | 05f28c6 | 2012-10-23 18:12:13 -0700 | [diff] [blame] | 2627 | oat_file_bytes, |
Brian Carlstrom | 2ec6520 | 2014-03-03 15:16:37 -0800 | [diff] [blame] | 2628 | managed_code_bytes, |
| 2629 | PercentOfOatBytes(managed_code_bytes), |
Brian Carlstrom | 2ec6520 | 2014-03-03 15:16:37 -0800 | [diff] [blame] | 2630 | native_to_managed_code_bytes, |
| 2631 | PercentOfOatBytes(native_to_managed_code_bytes), |
| 2632 | class_initializer_code_bytes, |
| 2633 | PercentOfOatBytes(class_initializer_code_bytes), |
| 2634 | large_initializer_code_bytes, |
| 2635 | PercentOfOatBytes(large_initializer_code_bytes), |
| 2636 | large_method_code_bytes, |
| 2637 | PercentOfOatBytes(large_method_code_bytes)) |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2638 | << "DexFile sizes:\n"; |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 2639 | for (const std::pair<std::string, size_t>& oat_dex_file_size : oat_dex_file_sizes) { |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2640 | os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n", |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 2641 | oat_dex_file_size.first.c_str(), oat_dex_file_size.second, |
| 2642 | PercentOfOatBytes(oat_dex_file_size.second)); |
Ian Rogers | 05f28c6 | 2012-10-23 18:12:13 -0700 | [diff] [blame] | 2643 | } |
| 2644 | |
Vladimir Marko | 9d07e3d | 2016-03-31 12:02:28 +0100 | [diff] [blame] | 2645 | os << "\n" << StringPrintf("vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n", |
Ian Rogers | 05f28c6 | 2012-10-23 18:12:13 -0700 | [diff] [blame] | 2646 | vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes)) |
Elliott Hughes | c073b07 | 2012-05-24 19:29:17 -0700 | [diff] [blame] | 2647 | << std::flush; |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2648 | |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2649 | os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes) |
| 2650 | << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n", |
Brian Carlstrom | 2ec6520 | 2014-03-03 15:16:37 -0800 | [diff] [blame] | 2651 | static_cast<double>(managed_code_bytes) / |
| 2652 | static_cast<double>(dex_instruction_bytes), |
Elliott Hughes | c073b07 | 2012-05-24 19:29:17 -0700 | [diff] [blame] | 2653 | static_cast<double>(managed_code_bytes_ignoring_deduplication) / |
Elliott Hughes | cf44e6f | 2012-05-24 19:42:18 -0700 | [diff] [blame] | 2654 | static_cast<double>(dex_instruction_bytes)) |
Elliott Hughes | c073b07 | 2012-05-24 19:29:17 -0700 | [diff] [blame] | 2655 | << std::flush; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2656 | |
| 2657 | DumpOutliers(os); |
Brian Carlstrom | 916e74e | 2011-09-23 11:42:01 -0700 | [diff] [blame] | 2658 | } |
| 2659 | } stats_; |
| 2660 | |
| 2661 | private: |
Ian Rogers | 0d2d378 | 2012-04-10 11:09:18 -0700 | [diff] [blame] | 2662 | enum { |
| 2663 | // Number of bytes for a constructor to be considered large. Based on the 1000 basic block |
| 2664 | // threshold, we assume 2 bytes per instruction and 2 instructions per block. |
| 2665 | kLargeConstructorDexBytes = 4000, |
| 2666 | // Number of bytes for a method to be considered large. Based on the 4000 basic block |
| 2667 | // threshold, we assume 2 bytes per instruction and 2 instructions per block. |
| 2668 | kLargeMethodDexBytes = 16000 |
| 2669 | }; |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 2670 | |
| 2671 | // For performance, use the *os_ directly for anything that doesn't need indentation |
| 2672 | // and prepare an indentation stream with default indentation 1. |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 2673 | std::ostream* os_; |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 2674 | VariableIndentationOutputStream vios_; |
| 2675 | ScopedIndentation indent1_; |
| 2676 | |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 2677 | gc::space::ImageSpace& image_space_; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2678 | const ImageHeader& image_header_; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 2679 | std::unique_ptr<OatDumper> oat_dumper_; |
Andreas Gampe | df2bb1f | 2015-05-04 18:25:23 -0700 | [diff] [blame] | 2680 | OatDumperOptions* oat_dumper_options_; |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2681 | std::set<mirror::Object*> dex_caches_; |
Elliott Hughes | d1bb4f6 | 2011-09-23 14:09:45 -0700 | [diff] [blame] | 2682 | |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 2683 | DISALLOW_COPY_AND_ASSIGN(ImageDumper); |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 2684 | }; |
| 2685 | |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2686 | static int DumpImage(gc::space::ImageSpace* image_space, |
| 2687 | OatDumperOptions* options, |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2688 | std::ostream* os) REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2689 | const ImageHeader& image_header = image_space->GetImageHeader(); |
| 2690 | if (!image_header.IsValid()) { |
| 2691 | fprintf(stderr, "Invalid image header %s\n", image_space->GetImageLocation().c_str()); |
| 2692 | return EXIT_FAILURE; |
| 2693 | } |
| 2694 | ImageDumper image_dumper(os, *image_space, image_header, options); |
| 2695 | if (!image_dumper.Dump()) { |
| 2696 | return EXIT_FAILURE; |
| 2697 | } |
| 2698 | return EXIT_SUCCESS; |
| 2699 | } |
| 2700 | |
| 2701 | static int DumpImages(Runtime* runtime, OatDumperOptions* options, std::ostream* os) { |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2702 | // Dumping the image, no explicit class loader. |
Mathieu Chartier | 9865bde | 2015-12-21 09:58:16 -0800 | [diff] [blame] | 2703 | ScopedNullHandle<mirror::ClassLoader> null_class_loader; |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2704 | options->class_loader_ = &null_class_loader; |
| 2705 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2706 | ScopedObjectAccess soa(Thread::Current()); |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2707 | if (options->app_image_ != nullptr) { |
| 2708 | if (options->app_oat_ == nullptr) { |
| 2709 | LOG(ERROR) << "Can not dump app image without app oat file"; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2710 | return EXIT_FAILURE; |
| 2711 | } |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2712 | // We can't know if the app image is 32 bits yet, but it contains pointers into the oat file. |
| 2713 | // We need to map the oat file in the low 4gb or else the fixup wont be able to fit oat file |
| 2714 | // pointers into 32 bit pointer sized ArtMethods. |
| 2715 | std::string error_msg; |
| 2716 | std::unique_ptr<OatFile> oat_file(OatFile::Open(options->app_oat_, |
| 2717 | options->app_oat_, |
| 2718 | nullptr, |
| 2719 | nullptr, |
| 2720 | false, |
| 2721 | /*low_4gb*/true, |
| 2722 | nullptr, |
| 2723 | &error_msg)); |
| 2724 | if (oat_file == nullptr) { |
| 2725 | LOG(ERROR) << "Failed to open oat file " << options->app_oat_ << " with error " << error_msg; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2726 | return EXIT_FAILURE; |
| 2727 | } |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 2728 | std::unique_ptr<gc::space::ImageSpace> space( |
| 2729 | gc::space::ImageSpace::CreateFromAppImage(options->app_image_, oat_file.get(), &error_msg)); |
| 2730 | if (space == nullptr) { |
| 2731 | LOG(ERROR) << "Failed to open app image " << options->app_image_ << " with error " |
| 2732 | << error_msg; |
| 2733 | } |
| 2734 | // Open dex files for the image. |
| 2735 | std::vector<std::unique_ptr<const DexFile>> dex_files; |
| 2736 | if (!runtime->GetClassLinker()->OpenImageDexFiles(space.get(), &dex_files, &error_msg)) { |
| 2737 | LOG(ERROR) << "Failed to open app image dex files " << options->app_image_ << " with error " |
| 2738 | << error_msg; |
| 2739 | } |
| 2740 | // Dump the actual image. |
| 2741 | int result = DumpImage(space.get(), options, os); |
| 2742 | if (result != EXIT_SUCCESS) { |
| 2743 | return result; |
| 2744 | } |
| 2745 | // Fall through to dump the boot images. |
| 2746 | } |
| 2747 | |
| 2748 | gc::Heap* heap = runtime->GetHeap(); |
| 2749 | CHECK(heap->HasBootImageSpace()) << "No image spaces"; |
| 2750 | for (gc::space::ImageSpace* image_space : heap->GetBootImageSpaces()) { |
| 2751 | int result = DumpImage(image_space, options, os); |
| 2752 | if (result != EXIT_SUCCESS) { |
| 2753 | return result; |
| 2754 | } |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 2755 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2756 | return EXIT_SUCCESS; |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 2757 | } |
| 2758 | |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2759 | static jobject InstallOatFile(Runtime* runtime, |
| 2760 | std::unique_ptr<OatFile> oat_file, |
| 2761 | std::vector<const DexFile*>* class_path) |
| 2762 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2763 | Thread* self = Thread::Current(); |
| 2764 | CHECK(self != nullptr); |
| 2765 | // Need well-known-classes. |
| 2766 | WellKnownClasses::Init(self->GetJniEnv()); |
| 2767 | |
| 2768 | // Need to register dex files to get a working dex cache. |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2769 | OatFile* oat_file_ptr = oat_file.get(); |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2770 | ClassLinker* class_linker = runtime->GetClassLinker(); |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2771 | runtime->GetOatFileManager().RegisterOatFile(std::move(oat_file)); |
| 2772 | for (const OatFile::OatDexFile* odf : oat_file_ptr->GetOatDexFiles()) { |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2773 | std::string error_msg; |
Mathieu Chartier | ac8f439 | 2015-08-27 13:54:20 -0700 | [diff] [blame] | 2774 | const DexFile* const dex_file = OpenDexFile(odf, &error_msg); |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2775 | CHECK(dex_file != nullptr) << error_msg; |
Vladimir Marko | cd556b0 | 2017-02-03 11:47:34 +0000 | [diff] [blame] | 2776 | ObjPtr<mirror::DexCache> dex_cache = |
| 2777 | class_linker->RegisterDexFile(*dex_file, nullptr); |
| 2778 | CHECK(dex_cache != nullptr); |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2779 | class_path->push_back(dex_file); |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2780 | } |
| 2781 | |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2782 | // Need a class loader. Fake that we're a compiler. |
| 2783 | // Note: this will run initializers through the unstarted runtime, so make sure it's |
| 2784 | // initialized. |
| 2785 | interpreter::UnstartedRuntime::Initialize(); |
| 2786 | |
| 2787 | jobject class_loader = class_linker->CreatePathClassLoader(self, *class_path); |
| 2788 | |
| 2789 | return class_loader; |
| 2790 | } |
| 2791 | |
| 2792 | static int DumpOatWithRuntime(Runtime* runtime, |
| 2793 | std::unique_ptr<OatFile> oat_file, |
| 2794 | OatDumperOptions* options, |
| 2795 | std::ostream* os) { |
| 2796 | CHECK(runtime != nullptr && oat_file != nullptr && options != nullptr); |
| 2797 | ScopedObjectAccess soa(Thread::Current()); |
| 2798 | |
| 2799 | OatFile* oat_file_ptr = oat_file.get(); |
| 2800 | std::vector<const DexFile*> class_path; |
| 2801 | jobject class_loader = InstallOatFile(runtime, std::move(oat_file), &class_path); |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2802 | |
| 2803 | // Use the class loader while dumping. |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2804 | StackHandleScope<1> scope(soa.Self()); |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2805 | Handle<mirror::ClassLoader> loader_handle = scope.NewHandle( |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 2806 | soa.Decode<mirror::ClassLoader>(class_loader)); |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2807 | options->class_loader_ = &loader_handle; |
| 2808 | |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2809 | OatDumper oat_dumper(*oat_file_ptr, *options); |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2810 | bool success = oat_dumper.Dump(*os); |
| 2811 | return (success) ? EXIT_SUCCESS : EXIT_FAILURE; |
| 2812 | } |
| 2813 | |
| 2814 | static int DumpOatWithoutRuntime(OatFile* oat_file, OatDumperOptions* options, std::ostream* os) { |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 2815 | CHECK(oat_file != nullptr && options != nullptr); |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2816 | // No image = no class loader. |
Mathieu Chartier | 9865bde | 2015-12-21 09:58:16 -0800 | [diff] [blame] | 2817 | ScopedNullHandle<mirror::ClassLoader> null_class_loader; |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2818 | options->class_loader_ = &null_class_loader; |
| 2819 | |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 2820 | OatDumper oat_dumper(*oat_file, *options); |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2821 | bool success = oat_dumper.Dump(*os); |
| 2822 | return (success) ? EXIT_SUCCESS : EXIT_FAILURE; |
| 2823 | } |
| 2824 | |
| 2825 | static int DumpOat(Runtime* runtime, const char* oat_filename, OatDumperOptions* options, |
| 2826 | std::ostream* os) { |
| 2827 | std::string error_msg; |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2828 | std::unique_ptr<OatFile> oat_file(OatFile::Open(oat_filename, |
| 2829 | oat_filename, |
| 2830 | nullptr, |
| 2831 | nullptr, |
| 2832 | false, |
| 2833 | /*low_4gb*/false, |
| 2834 | nullptr, |
| 2835 | &error_msg)); |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2836 | if (oat_file == nullptr) { |
| 2837 | fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str()); |
| 2838 | return EXIT_FAILURE; |
| 2839 | } |
| 2840 | |
| 2841 | if (runtime != nullptr) { |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2842 | return DumpOatWithRuntime(runtime, std::move(oat_file), options, os); |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2843 | } else { |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2844 | return DumpOatWithoutRuntime(oat_file.get(), options, os); |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2845 | } |
| 2846 | } |
| 2847 | |
David Srbecky | 2fdd03c | 2016-03-10 15:32:37 +0000 | [diff] [blame] | 2848 | static int SymbolizeOat(const char* oat_filename, std::string& output_name, bool no_bits) { |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2849 | std::string error_msg; |
Andreas Gampe | 08c277c | 2017-04-26 22:22:15 -0700 | [diff] [blame] | 2850 | std::unique_ptr<OatFile> oat_file(OatFile::Open(oat_filename, |
| 2851 | oat_filename, |
| 2852 | nullptr, |
| 2853 | nullptr, |
| 2854 | false, |
| 2855 | /*low_4gb*/false, |
| 2856 | nullptr, |
| 2857 | &error_msg)); |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2858 | if (oat_file == nullptr) { |
| 2859 | fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str()); |
| 2860 | return EXIT_FAILURE; |
| 2861 | } |
| 2862 | |
Andreas Gampe | 2d8614b | 2016-03-07 16:31:34 -0800 | [diff] [blame] | 2863 | bool result; |
| 2864 | // Try to produce an ELF file of the same type. This is finicky, as we have used 32-bit ELF |
| 2865 | // files for 64-bit code in the past. |
| 2866 | if (Is64BitInstructionSet(oat_file->GetOatHeader().GetInstructionSet())) { |
Andreas Gampe | 08c277c | 2017-04-26 22:22:15 -0700 | [diff] [blame] | 2867 | OatSymbolizer<ElfTypes64> oat_symbolizer(oat_file.get(), output_name, no_bits); |
Andreas Gampe | 2d8614b | 2016-03-07 16:31:34 -0800 | [diff] [blame] | 2868 | result = oat_symbolizer.Symbolize(); |
| 2869 | } else { |
Andreas Gampe | 08c277c | 2017-04-26 22:22:15 -0700 | [diff] [blame] | 2870 | OatSymbolizer<ElfTypes32> oat_symbolizer(oat_file.get(), output_name, no_bits); |
Andreas Gampe | 2d8614b | 2016-03-07 16:31:34 -0800 | [diff] [blame] | 2871 | result = oat_symbolizer.Symbolize(); |
| 2872 | } |
| 2873 | if (!result) { |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 2874 | fprintf(stderr, "Failed to symbolize\n"); |
| 2875 | return EXIT_FAILURE; |
| 2876 | } |
| 2877 | |
| 2878 | return EXIT_SUCCESS; |
| 2879 | } |
| 2880 | |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 2881 | class IMTDumper { |
| 2882 | public: |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2883 | static bool Dump(Runtime* runtime, |
| 2884 | const std::string& imt_file, |
| 2885 | bool dump_imt_stats, |
| 2886 | const char* oat_filename) { |
| 2887 | Thread* self = Thread::Current(); |
| 2888 | |
| 2889 | ScopedObjectAccess soa(self); |
| 2890 | StackHandleScope<1> scope(self); |
| 2891 | MutableHandle<mirror::ClassLoader> class_loader = scope.NewHandle<mirror::ClassLoader>(nullptr); |
| 2892 | std::vector<const DexFile*> class_path; |
| 2893 | |
| 2894 | if (oat_filename != nullptr) { |
| 2895 | std::string error_msg; |
| 2896 | std::unique_ptr<OatFile> oat_file(OatFile::Open(oat_filename, |
| 2897 | oat_filename, |
| 2898 | nullptr, |
| 2899 | nullptr, |
| 2900 | false, |
| 2901 | /*low_4gb*/false, |
| 2902 | nullptr, |
| 2903 | &error_msg)); |
| 2904 | if (oat_file == nullptr) { |
| 2905 | fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str()); |
| 2906 | return false; |
| 2907 | } |
| 2908 | |
| 2909 | class_loader.Assign(soa.Decode<mirror::ClassLoader>( |
| 2910 | InstallOatFile(runtime, std::move(oat_file), &class_path))); |
| 2911 | } else { |
| 2912 | class_loader.Assign(nullptr); // Boot classloader. Just here for explicit documentation. |
| 2913 | class_path = runtime->GetClassLinker()->GetBootClassPath(); |
| 2914 | } |
| 2915 | |
| 2916 | if (!imt_file.empty()) { |
| 2917 | return DumpImt(runtime, imt_file, class_loader); |
| 2918 | } |
| 2919 | |
| 2920 | if (dump_imt_stats) { |
| 2921 | return DumpImtStats(runtime, class_path, class_loader); |
| 2922 | } |
| 2923 | |
| 2924 | LOG(FATAL) << "Should not reach here"; |
| 2925 | UNREACHABLE(); |
| 2926 | } |
| 2927 | |
| 2928 | private: |
| 2929 | static bool DumpImt(Runtime* runtime, |
| 2930 | const std::string& imt_file, |
| 2931 | Handle<mirror::ClassLoader> h_class_loader) |
| 2932 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 2933 | std::vector<std::string> lines = ReadCommentedInputFromFile(imt_file); |
| 2934 | std::unordered_set<std::string> prepared; |
| 2935 | |
| 2936 | for (const std::string& line : lines) { |
| 2937 | // A line should be either a class descriptor, in which case we will dump the complete IMT, |
| 2938 | // or a class descriptor and an interface method, in which case we will lookup the method, |
| 2939 | // determine its IMT slot, and check the class' IMT. |
| 2940 | size_t first_space = line.find(' '); |
| 2941 | if (first_space == std::string::npos) { |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2942 | DumpIMTForClass(runtime, line, h_class_loader, &prepared); |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 2943 | } else { |
| 2944 | DumpIMTForMethod(runtime, |
| 2945 | line.substr(0, first_space), |
| 2946 | line.substr(first_space + 1, std::string::npos), |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2947 | h_class_loader, |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 2948 | &prepared); |
| 2949 | } |
| 2950 | std::cerr << std::endl; |
| 2951 | } |
| 2952 | |
| 2953 | return true; |
| 2954 | } |
| 2955 | |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2956 | static bool DumpImtStats(Runtime* runtime, |
| 2957 | const std::vector<const DexFile*>& dex_files, |
| 2958 | Handle<mirror::ClassLoader> h_class_loader) |
| 2959 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 2960 | size_t without_imt = 0; |
| 2961 | size_t with_imt = 0; |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 2962 | std::map<size_t, size_t> histogram; |
| 2963 | |
| 2964 | ClassLinker* class_linker = runtime->GetClassLinker(); |
| 2965 | const PointerSize pointer_size = class_linker->GetImagePointerSize(); |
| 2966 | std::unordered_set<std::string> prepared; |
| 2967 | |
| 2968 | Thread* self = Thread::Current(); |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 2969 | StackHandleScope<1> scope(self); |
| 2970 | MutableHandle<mirror::Class> h_klass(scope.NewHandle<mirror::Class>(nullptr)); |
| 2971 | |
| 2972 | for (const DexFile* dex_file : dex_files) { |
| 2973 | for (uint32_t class_def_index = 0; |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2974 | class_def_index != dex_file->NumClassDefs(); |
| 2975 | ++class_def_index) { |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 2976 | const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index); |
| 2977 | const char* descriptor = dex_file->GetClassDescriptor(class_def); |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2978 | h_klass.Assign(class_linker->FindClass(self, descriptor, h_class_loader)); |
Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 2979 | if (h_klass == nullptr) { |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 2980 | std::cerr << "Warning: could not load " << descriptor << std::endl; |
| 2981 | continue; |
| 2982 | } |
| 2983 | |
| 2984 | if (HasNoIMT(runtime, h_klass, pointer_size, &prepared)) { |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2985 | without_imt++; |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 2986 | continue; |
| 2987 | } |
| 2988 | |
| 2989 | ImTable* im_table = PrepareAndGetImTable(runtime, h_klass, pointer_size, &prepared); |
| 2990 | if (im_table == nullptr) { |
| 2991 | // Should not happen, but accept. |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2992 | without_imt++; |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 2993 | continue; |
| 2994 | } |
| 2995 | |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 2996 | with_imt++; |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 2997 | for (size_t imt_index = 0; imt_index != ImTable::kSize; ++imt_index) { |
| 2998 | ArtMethod* ptr = im_table->Get(imt_index, pointer_size); |
| 2999 | if (ptr->IsRuntimeMethod()) { |
| 3000 | if (ptr->IsImtUnimplementedMethod()) { |
| 3001 | histogram[0]++; |
| 3002 | } else { |
| 3003 | ImtConflictTable* current_table = ptr->GetImtConflictTable(pointer_size); |
| 3004 | histogram[current_table->NumEntries(pointer_size)]++; |
| 3005 | } |
| 3006 | } else { |
| 3007 | histogram[1]++; |
| 3008 | } |
| 3009 | } |
| 3010 | } |
| 3011 | } |
| 3012 | |
| 3013 | std::cerr << "IMT stats:" |
| 3014 | << std::endl << std::endl; |
| 3015 | |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 3016 | std::cerr << " " << with_imt << " classes with IMT." |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3017 | << std::endl << std::endl; |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 3018 | std::cerr << " " << without_imt << " classes without IMT (or copy from Object)." |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3019 | << std::endl << std::endl; |
| 3020 | |
| 3021 | double sum_one = 0; |
| 3022 | size_t count_one = 0; |
| 3023 | |
| 3024 | std::cerr << " " << "IMT histogram" << std::endl; |
| 3025 | for (auto& bucket : histogram) { |
| 3026 | std::cerr << " " << bucket.first << " " << bucket.second << std::endl; |
| 3027 | if (bucket.first > 0) { |
| 3028 | sum_one += bucket.second * bucket.first; |
| 3029 | count_one += bucket.second; |
| 3030 | } |
| 3031 | } |
| 3032 | |
| 3033 | double count_zero = count_one + histogram[0]; |
| 3034 | std::cerr << " Stats:" << std::endl; |
| 3035 | std::cerr << " Average depth (including empty): " << (sum_one / count_zero) << std::endl; |
| 3036 | std::cerr << " Average depth (excluding empty): " << (sum_one / count_one) << std::endl; |
| 3037 | |
| 3038 | return true; |
| 3039 | } |
| 3040 | |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 3041 | // Return whether the given class has no IMT (or the one shared with java.lang.Object). |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3042 | static bool HasNoIMT(Runtime* runtime, |
| 3043 | Handle<mirror::Class> klass, |
| 3044 | const PointerSize pointer_size, |
| 3045 | std::unordered_set<std::string>* prepared) |
| 3046 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 3047 | if (klass->IsObjectClass() || !klass->ShouldHaveImt()) { |
| 3048 | return true; |
| 3049 | } |
| 3050 | |
| 3051 | if (klass->GetImt(pointer_size) == nullptr) { |
| 3052 | PrepareClass(runtime, klass, prepared); |
| 3053 | } |
| 3054 | |
| 3055 | mirror::Class* object_class = mirror::Class::GetJavaLangClass()->GetSuperClass(); |
| 3056 | DCHECK(object_class->IsObjectClass()); |
| 3057 | |
| 3058 | bool result = klass->GetImt(pointer_size) == object_class->GetImt(pointer_size); |
| 3059 | |
Mathieu Chartier | 6beced4 | 2016-11-15 15:51:31 -0800 | [diff] [blame] | 3060 | if (klass->GetIfTable()->Count() == 0) { |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3061 | DCHECK(result); |
| 3062 | } |
| 3063 | |
| 3064 | return result; |
| 3065 | } |
| 3066 | |
| 3067 | static void PrintTable(ImtConflictTable* table, PointerSize pointer_size) |
| 3068 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 3069 | if (table == nullptr) { |
| 3070 | std::cerr << " <No IMT?>" << std::endl; |
| 3071 | return; |
| 3072 | } |
| 3073 | size_t table_index = 0; |
| 3074 | for (;;) { |
| 3075 | ArtMethod* ptr = table->GetInterfaceMethod(table_index, pointer_size); |
| 3076 | if (ptr == nullptr) { |
| 3077 | return; |
| 3078 | } |
| 3079 | table_index++; |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3080 | std::cerr << " " << ptr->PrettyMethod(true) << std::endl; |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3081 | } |
| 3082 | } |
| 3083 | |
| 3084 | static ImTable* PrepareAndGetImTable(Runtime* runtime, |
| 3085 | Thread* self, |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 3086 | Handle<mirror::ClassLoader> h_loader, |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3087 | const std::string& class_name, |
| 3088 | const PointerSize pointer_size, |
| 3089 | mirror::Class** klass_out, |
| 3090 | std::unordered_set<std::string>* prepared) |
| 3091 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 3092 | if (class_name.empty()) { |
| 3093 | return nullptr; |
| 3094 | } |
| 3095 | |
| 3096 | std::string descriptor; |
| 3097 | if (class_name[0] == 'L') { |
| 3098 | descriptor = class_name; |
| 3099 | } else { |
| 3100 | descriptor = DotToDescriptor(class_name.c_str()); |
| 3101 | } |
| 3102 | |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 3103 | mirror::Class* klass = runtime->GetClassLinker()->FindClass(self, descriptor.c_str(), h_loader); |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3104 | |
| 3105 | if (klass == nullptr) { |
| 3106 | self->ClearException(); |
| 3107 | std::cerr << "Did not find " << class_name << std::endl; |
| 3108 | *klass_out = nullptr; |
| 3109 | return nullptr; |
| 3110 | } |
| 3111 | |
| 3112 | StackHandleScope<1> scope(Thread::Current()); |
| 3113 | Handle<mirror::Class> h_klass = scope.NewHandle<mirror::Class>(klass); |
| 3114 | |
| 3115 | ImTable* ret = PrepareAndGetImTable(runtime, h_klass, pointer_size, prepared); |
| 3116 | *klass_out = h_klass.Get(); |
| 3117 | return ret; |
| 3118 | } |
| 3119 | |
| 3120 | static ImTable* PrepareAndGetImTable(Runtime* runtime, |
| 3121 | Handle<mirror::Class> h_klass, |
| 3122 | const PointerSize pointer_size, |
| 3123 | std::unordered_set<std::string>* prepared) |
| 3124 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 3125 | PrepareClass(runtime, h_klass, prepared); |
| 3126 | return h_klass->GetImt(pointer_size); |
| 3127 | } |
| 3128 | |
| 3129 | static void DumpIMTForClass(Runtime* runtime, |
| 3130 | const std::string& class_name, |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 3131 | Handle<mirror::ClassLoader> h_loader, |
| 3132 | std::unordered_set<std::string>* prepared) |
| 3133 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3134 | const PointerSize pointer_size = runtime->GetClassLinker()->GetImagePointerSize(); |
| 3135 | mirror::Class* klass; |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 3136 | ImTable* imt = PrepareAndGetImTable(runtime, |
| 3137 | Thread::Current(), |
| 3138 | h_loader, |
| 3139 | class_name, |
| 3140 | pointer_size, |
| 3141 | &klass, |
| 3142 | prepared); |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3143 | if (imt == nullptr) { |
| 3144 | return; |
| 3145 | } |
| 3146 | |
| 3147 | std::cerr << class_name << std::endl << " IMT:" << std::endl; |
| 3148 | for (size_t index = 0; index < ImTable::kSize; ++index) { |
| 3149 | std::cerr << " " << index << ":" << std::endl; |
| 3150 | ArtMethod* ptr = imt->Get(index, pointer_size); |
| 3151 | if (ptr->IsRuntimeMethod()) { |
| 3152 | if (ptr->IsImtUnimplementedMethod()) { |
| 3153 | std::cerr << " <empty>" << std::endl; |
| 3154 | } else { |
| 3155 | ImtConflictTable* current_table = ptr->GetImtConflictTable(pointer_size); |
| 3156 | PrintTable(current_table, pointer_size); |
| 3157 | } |
| 3158 | } else { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3159 | std::cerr << " " << ptr->PrettyMethod(true) << std::endl; |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3160 | } |
| 3161 | } |
| 3162 | |
| 3163 | std::cerr << " Interfaces:" << std::endl; |
| 3164 | // Run through iftable, find methods that slot here, see if they fit. |
| 3165 | mirror::IfTable* if_table = klass->GetIfTable(); |
Mathieu Chartier | 6beced4 | 2016-11-15 15:51:31 -0800 | [diff] [blame] | 3166 | for (size_t i = 0, num_interfaces = klass->GetIfTableCount(); i < num_interfaces; ++i) { |
| 3167 | mirror::Class* iface = if_table->GetInterface(i); |
| 3168 | std::string iface_name; |
| 3169 | std::cerr << " " << iface->GetDescriptor(&iface_name) << std::endl; |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3170 | |
Mathieu Chartier | 6beced4 | 2016-11-15 15:51:31 -0800 | [diff] [blame] | 3171 | for (ArtMethod& iface_method : iface->GetVirtualMethods(pointer_size)) { |
| 3172 | uint32_t class_hash, name_hash, signature_hash; |
| 3173 | ImTable::GetImtHashComponents(&iface_method, &class_hash, &name_hash, &signature_hash); |
| 3174 | uint32_t imt_slot = ImTable::GetImtIndex(&iface_method); |
| 3175 | std::cerr << " " << iface_method.PrettyMethod(true) |
| 3176 | << " slot=" << imt_slot |
| 3177 | << std::hex |
| 3178 | << " class_hash=0x" << class_hash |
| 3179 | << " name_hash=0x" << name_hash |
| 3180 | << " signature_hash=0x" << signature_hash |
| 3181 | << std::dec |
| 3182 | << std::endl; |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3183 | } |
| 3184 | } |
| 3185 | } |
| 3186 | |
| 3187 | static void DumpIMTForMethod(Runtime* runtime, |
| 3188 | const std::string& class_name, |
| 3189 | const std::string& method, |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 3190 | Handle<mirror::ClassLoader> h_loader, |
| 3191 | std::unordered_set<std::string>* prepared) |
| 3192 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3193 | const PointerSize pointer_size = runtime->GetClassLinker()->GetImagePointerSize(); |
| 3194 | mirror::Class* klass; |
| 3195 | ImTable* imt = PrepareAndGetImTable(runtime, |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 3196 | Thread::Current(), |
| 3197 | h_loader, |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3198 | class_name, |
| 3199 | pointer_size, |
| 3200 | &klass, |
| 3201 | prepared); |
| 3202 | if (imt == nullptr) { |
| 3203 | return; |
| 3204 | } |
| 3205 | |
| 3206 | std::cerr << class_name << " <" << method << ">" << std::endl; |
| 3207 | for (size_t index = 0; index < ImTable::kSize; ++index) { |
| 3208 | ArtMethod* ptr = imt->Get(index, pointer_size); |
| 3209 | if (ptr->IsRuntimeMethod()) { |
| 3210 | if (ptr->IsImtUnimplementedMethod()) { |
| 3211 | continue; |
| 3212 | } |
| 3213 | |
| 3214 | ImtConflictTable* current_table = ptr->GetImtConflictTable(pointer_size); |
| 3215 | if (current_table == nullptr) { |
| 3216 | continue; |
| 3217 | } |
| 3218 | |
| 3219 | size_t table_index = 0; |
| 3220 | for (;;) { |
| 3221 | ArtMethod* ptr2 = current_table->GetInterfaceMethod(table_index, pointer_size); |
| 3222 | if (ptr2 == nullptr) { |
| 3223 | break; |
| 3224 | } |
| 3225 | table_index++; |
| 3226 | |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3227 | std::string p_name = ptr2->PrettyMethod(true); |
Andreas Gampe | 9186ced | 2016-12-12 14:28:21 -0800 | [diff] [blame] | 3228 | if (android::base::StartsWith(p_name, method.c_str())) { |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3229 | std::cerr << " Slot " |
| 3230 | << index |
| 3231 | << " (" |
| 3232 | << current_table->NumEntries(pointer_size) |
| 3233 | << ")" |
| 3234 | << std::endl; |
| 3235 | PrintTable(current_table, pointer_size); |
| 3236 | return; |
| 3237 | } |
| 3238 | } |
| 3239 | } else { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3240 | std::string p_name = ptr->PrettyMethod(true); |
Andreas Gampe | 9186ced | 2016-12-12 14:28:21 -0800 | [diff] [blame] | 3241 | if (android::base::StartsWith(p_name, method.c_str())) { |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3242 | std::cerr << " Slot " << index << " (1)" << std::endl; |
| 3243 | std::cerr << " " << p_name << std::endl; |
| 3244 | } else { |
| 3245 | // Run through iftable, find methods that slot here, see if they fit. |
| 3246 | mirror::IfTable* if_table = klass->GetIfTable(); |
Mathieu Chartier | 6beced4 | 2016-11-15 15:51:31 -0800 | [diff] [blame] | 3247 | for (size_t i = 0, num_interfaces = klass->GetIfTableCount(); i < num_interfaces; ++i) { |
| 3248 | mirror::Class* iface = if_table->GetInterface(i); |
| 3249 | size_t num_methods = iface->NumDeclaredVirtualMethods(); |
| 3250 | if (num_methods > 0) { |
| 3251 | for (ArtMethod& iface_method : iface->GetMethods(pointer_size)) { |
| 3252 | if (ImTable::GetImtIndex(&iface_method) == index) { |
| 3253 | std::string i_name = iface_method.PrettyMethod(true); |
Andreas Gampe | 9186ced | 2016-12-12 14:28:21 -0800 | [diff] [blame] | 3254 | if (android::base::StartsWith(i_name, method.c_str())) { |
Mathieu Chartier | 6beced4 | 2016-11-15 15:51:31 -0800 | [diff] [blame] | 3255 | std::cerr << " Slot " << index << " (1)" << std::endl; |
| 3256 | std::cerr << " " << p_name << " (" << i_name << ")" << std::endl; |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3257 | } |
| 3258 | } |
| 3259 | } |
| 3260 | } |
| 3261 | } |
| 3262 | } |
| 3263 | } |
| 3264 | } |
| 3265 | } |
| 3266 | |
| 3267 | // Read lines from the given stream, dropping comments and empty lines |
| 3268 | static std::vector<std::string> ReadCommentedInputStream(std::istream& in_stream) { |
| 3269 | std::vector<std::string> output; |
| 3270 | while (in_stream.good()) { |
| 3271 | std::string dot; |
| 3272 | std::getline(in_stream, dot); |
Andreas Gampe | 9186ced | 2016-12-12 14:28:21 -0800 | [diff] [blame] | 3273 | if (android::base::StartsWith(dot, "#") || dot.empty()) { |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3274 | continue; |
| 3275 | } |
| 3276 | output.push_back(dot); |
| 3277 | } |
| 3278 | return output; |
| 3279 | } |
| 3280 | |
| 3281 | // Read lines from the given file, dropping comments and empty lines. |
| 3282 | static std::vector<std::string> ReadCommentedInputFromFile(const std::string& input_filename) { |
| 3283 | std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in)); |
| 3284 | if (input_file.get() == nullptr) { |
| 3285 | LOG(ERROR) << "Failed to open input file " << input_filename; |
| 3286 | return std::vector<std::string>(); |
| 3287 | } |
| 3288 | std::vector<std::string> result = ReadCommentedInputStream(*input_file); |
| 3289 | input_file->close(); |
| 3290 | return result; |
| 3291 | } |
| 3292 | |
| 3293 | // Prepare a class, i.e., ensure it has a filled IMT. Will do so recursively for superclasses, |
| 3294 | // and note in the given set that the work was done. |
| 3295 | static void PrepareClass(Runtime* runtime, |
| 3296 | Handle<mirror::Class> h_klass, |
| 3297 | std::unordered_set<std::string>* done) |
| 3298 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 3299 | if (!h_klass->ShouldHaveImt()) { |
| 3300 | return; |
| 3301 | } |
| 3302 | |
| 3303 | std::string name; |
| 3304 | name = h_klass->GetDescriptor(&name); |
| 3305 | |
| 3306 | if (done->find(name) != done->end()) { |
| 3307 | return; |
| 3308 | } |
| 3309 | done->insert(name); |
| 3310 | |
| 3311 | if (h_klass->HasSuperClass()) { |
| 3312 | StackHandleScope<1> h(Thread::Current()); |
| 3313 | PrepareClass(runtime, h.NewHandle<mirror::Class>(h_klass->GetSuperClass()), done); |
| 3314 | } |
| 3315 | |
| 3316 | if (!h_klass->IsTemp()) { |
| 3317 | runtime->GetClassLinker()->FillIMTAndConflictTables(h_klass.Get()); |
| 3318 | } |
| 3319 | } |
| 3320 | }; |
| 3321 | |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3322 | struct OatdumpArgs : public CmdlineArgs { |
| 3323 | protected: |
| 3324 | using Base = CmdlineArgs; |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3325 | |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3326 | virtual ParseStatus ParseCustom(const StringPiece& option, |
| 3327 | std::string* error_msg) OVERRIDE { |
| 3328 | { |
| 3329 | ParseStatus base_parse = Base::ParseCustom(option, error_msg); |
| 3330 | if (base_parse != kParseUnknownArgument) { |
| 3331 | return base_parse; |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3332 | } |
| 3333 | } |
| 3334 | |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3335 | if (option.starts_with("--oat-file=")) { |
| 3336 | oat_filename_ = option.substr(strlen("--oat-file=")).data(); |
| 3337 | } else if (option.starts_with("--image=")) { |
| 3338 | image_location_ = option.substr(strlen("--image=")).data(); |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3339 | } else if (option == "--no-dump:vmap") { |
| 3340 | dump_vmap_ = false; |
Roland Levillain | f2650d1 | 2015-05-28 14:53:28 +0100 | [diff] [blame] | 3341 | } else if (option =="--dump:code_info_stack_maps") { |
| 3342 | dump_code_info_stack_maps_ = true; |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3343 | } else if (option == "--no-disassemble") { |
| 3344 | disassemble_code_ = false; |
David Brazdil | c03d7b6 | 2016-03-02 12:18:03 +0000 | [diff] [blame] | 3345 | } else if (option =="--header-only") { |
| 3346 | dump_header_only_ = true; |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3347 | } else if (option.starts_with("--symbolize=")) { |
| 3348 | oat_filename_ = option.substr(strlen("--symbolize=")).data(); |
| 3349 | symbolize_ = true; |
David Srbecky | 2fdd03c | 2016-03-10 15:32:37 +0000 | [diff] [blame] | 3350 | } else if (option.starts_with("--only-keep-debug")) { |
| 3351 | only_keep_debug_ = true; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 3352 | } else if (option.starts_with("--class-filter=")) { |
| 3353 | class_filter_ = option.substr(strlen("--class-filter=")).data(); |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3354 | } else if (option.starts_with("--method-filter=")) { |
| 3355 | method_filter_ = option.substr(strlen("--method-filter=")).data(); |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 3356 | } else if (option.starts_with("--list-classes")) { |
| 3357 | list_classes_ = true; |
| 3358 | } else if (option.starts_with("--list-methods")) { |
| 3359 | list_methods_ = true; |
| 3360 | } else if (option.starts_with("--export-dex-to=")) { |
| 3361 | export_dex_location_ = option.substr(strlen("--export-dex-to=")).data(); |
| 3362 | } else if (option.starts_with("--addr2instr=")) { |
| 3363 | if (!ParseUint(option.substr(strlen("--addr2instr=")).data(), &addr2instr_)) { |
| 3364 | *error_msg = "Address conversion failed"; |
| 3365 | return kParseError; |
| 3366 | } |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 3367 | } else if (option.starts_with("--app-image=")) { |
| 3368 | app_image_ = option.substr(strlen("--app-image=")).data(); |
| 3369 | } else if (option.starts_with("--app-oat=")) { |
| 3370 | app_oat_ = option.substr(strlen("--app-oat=")).data(); |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3371 | } else if (option.starts_with("--dump-imt=")) { |
| 3372 | imt_dump_ = option.substr(strlen("--dump-imt=")).data(); |
| 3373 | } else if (option == "--dump-imt-stats") { |
| 3374 | imt_stat_dump_ = true; |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3375 | } else { |
| 3376 | return kParseUnknownArgument; |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3377 | } |
| 3378 | |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3379 | return kParseOk; |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3380 | } |
| 3381 | |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3382 | virtual ParseStatus ParseChecks(std::string* error_msg) OVERRIDE { |
| 3383 | // Infer boot image location from the image location if possible. |
| 3384 | if (boot_image_location_ == nullptr) { |
| 3385 | boot_image_location_ = image_location_; |
| 3386 | } |
| 3387 | |
| 3388 | // Perform the parent checks. |
| 3389 | ParseStatus parent_checks = Base::ParseChecks(error_msg); |
| 3390 | if (parent_checks != kParseOk) { |
| 3391 | return parent_checks; |
| 3392 | } |
| 3393 | |
| 3394 | // Perform our own checks. |
| 3395 | if (image_location_ == nullptr && oat_filename_ == nullptr) { |
| 3396 | *error_msg = "Either --image or --oat-file must be specified"; |
| 3397 | return kParseError; |
| 3398 | } else if (image_location_ != nullptr && oat_filename_ != nullptr) { |
| 3399 | *error_msg = "Either --image or --oat-file must be specified but not both"; |
| 3400 | return kParseError; |
| 3401 | } |
| 3402 | |
| 3403 | return kParseOk; |
| 3404 | } |
| 3405 | |
| 3406 | virtual std::string GetUsage() const { |
| 3407 | std::string usage; |
| 3408 | |
| 3409 | usage += |
| 3410 | "Usage: oatdump [options] ...\n" |
| 3411 | " Example: oatdump --image=$ANDROID_PRODUCT_OUT/system/framework/boot.art\n" |
| 3412 | " Example: adb shell oatdump --image=/system/framework/boot.art\n" |
| 3413 | "\n" |
| 3414 | // Either oat-file or image is required. |
| 3415 | " --oat-file=<file.oat>: specifies an input oat filename.\n" |
| 3416 | " Example: --oat-file=/system/framework/boot.oat\n" |
| 3417 | "\n" |
| 3418 | " --image=<file.art>: specifies an input image location.\n" |
| 3419 | " Example: --image=/system/framework/boot.art\n" |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 3420 | "\n" |
| 3421 | " --app-image=<file.art>: specifies an input app image. Must also have a specified\n" |
| 3422 | " boot image and app oat file.\n" |
| 3423 | " Example: --app-image=app.art\n" |
| 3424 | "\n" |
| 3425 | " --app-oat=<file.odex>: specifies an input app oat.\n" |
| 3426 | " Example: --app-oat=app.odex\n" |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3427 | "\n"; |
| 3428 | |
| 3429 | usage += Base::GetUsage(); |
| 3430 | |
| 3431 | usage += // Optional. |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3432 | " --no-dump:vmap may be used to disable vmap dumping.\n" |
| 3433 | " Example: --no-dump:vmap\n" |
| 3434 | "\n" |
Roland Levillain | f2650d1 | 2015-05-28 14:53:28 +0100 | [diff] [blame] | 3435 | " --dump:code_info_stack_maps enables dumping of stack maps in CodeInfo sections.\n" |
| 3436 | " Example: --dump:code_info_stack_maps\n" |
| 3437 | "\n" |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3438 | " --no-disassemble may be used to disable disassembly.\n" |
| 3439 | " Example: --no-disassemble\n" |
| 3440 | "\n" |
David Brazdil | c03d7b6 | 2016-03-02 12:18:03 +0000 | [diff] [blame] | 3441 | " --header-only may be used to print only the oat header.\n" |
| 3442 | " Example: --header-only\n" |
| 3443 | "\n" |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 3444 | " --list-classes may be used to list target file classes (can be used with filters).\n" |
| 3445 | " Example: --list-classes\n" |
| 3446 | " Example: --list-classes --class-filter=com.example.foo\n" |
| 3447 | "\n" |
| 3448 | " --list-methods may be used to list target file methods (can be used with filters).\n" |
| 3449 | " Example: --list-methods\n" |
| 3450 | " Example: --list-methods --class-filter=com.example --method-filter=foo\n" |
| 3451 | "\n" |
| 3452 | " --symbolize=<file.oat>: output a copy of file.oat with elf symbols included.\n" |
| 3453 | " Example: --symbolize=/system/framework/boot.oat\n" |
| 3454 | "\n" |
David Srbecky | 2fdd03c | 2016-03-10 15:32:37 +0000 | [diff] [blame] | 3455 | " --only-keep-debug<file.oat>: Modifies the behaviour of --symbolize so that\n" |
| 3456 | " .rodata and .text sections are omitted in the output file to save space.\n" |
| 3457 | " Example: --symbolize=/system/framework/boot.oat --only-keep-debug\n" |
| 3458 | "\n" |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 3459 | " --class-filter=<class name>: only dumps classes that contain the filter.\n" |
| 3460 | " Example: --class-filter=com.example.foo\n" |
| 3461 | "\n" |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3462 | " --method-filter=<method name>: only dumps methods that contain the filter.\n" |
| 3463 | " Example: --method-filter=foo\n" |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 3464 | "\n" |
| 3465 | " --export-dex-to=<directory>: may be used to export oat embedded dex files.\n" |
| 3466 | " Example: --export-dex-to=/data/local/tmp\n" |
| 3467 | "\n" |
| 3468 | " --addr2instr=<address>: output matching method disassembled code from relative\n" |
| 3469 | " address (e.g. PC from crash dump)\n" |
| 3470 | " Example: --addr2instr=0x00001a3b\n" |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3471 | "\n" |
| 3472 | " --dump-imt=<file.txt>: output IMT collisions (if any) for the given receiver\n" |
| 3473 | " types and interface methods in the given file. The file\n" |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 3474 | " is read line-wise, where each line should either be a class\n" |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3475 | " name or descriptor, or a class name/descriptor and a prefix\n" |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 3476 | " of a complete method name (separated by a whitespace).\n" |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3477 | " Example: --dump-imt=imt.txt\n" |
| 3478 | "\n" |
| 3479 | " --dump-imt-stats: output IMT statistics for the given boot image\n" |
| 3480 | " Example: --dump-imt-stats" |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3481 | "\n"; |
| 3482 | |
| 3483 | return usage; |
| 3484 | } |
| 3485 | |
| 3486 | public: |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3487 | const char* oat_filename_ = nullptr; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 3488 | const char* class_filter_ = ""; |
Nicolas Geoffray | 3fcd220 | 2014-11-12 18:02:36 +0000 | [diff] [blame] | 3489 | const char* method_filter_ = ""; |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3490 | const char* image_location_ = nullptr; |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3491 | std::string elf_filename_prefix_; |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3492 | std::string imt_dump_; |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3493 | bool dump_vmap_ = true; |
Roland Levillain | f2650d1 | 2015-05-28 14:53:28 +0100 | [diff] [blame] | 3494 | bool dump_code_info_stack_maps_ = false; |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3495 | bool disassemble_code_ = true; |
| 3496 | bool symbolize_ = false; |
David Srbecky | 2fdd03c | 2016-03-10 15:32:37 +0000 | [diff] [blame] | 3497 | bool only_keep_debug_ = false; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 3498 | bool list_classes_ = false; |
| 3499 | bool list_methods_ = false; |
David Brazdil | c03d7b6 | 2016-03-02 12:18:03 +0000 | [diff] [blame] | 3500 | bool dump_header_only_ = false; |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3501 | bool imt_stat_dump_ = false; |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 3502 | uint32_t addr2instr_ = 0; |
| 3503 | const char* export_dex_location_ = nullptr; |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 3504 | const char* app_image_ = nullptr; |
| 3505 | const char* app_oat_ = nullptr; |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3506 | }; |
| 3507 | |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3508 | struct OatdumpMain : public CmdlineMain<OatdumpArgs> { |
| 3509 | virtual bool NeedsRuntime() OVERRIDE { |
| 3510 | CHECK(args_ != nullptr); |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3511 | |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3512 | // If we are only doing the oat file, disable absolute_addresses. Keep them for image dumping. |
| 3513 | bool absolute_addresses = (args_->oat_filename_ == nullptr); |
| 3514 | |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 3515 | oat_dumper_options_.reset(new OatDumperOptions( |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3516 | args_->dump_vmap_, |
Roland Levillain | f2650d1 | 2015-05-28 14:53:28 +0100 | [diff] [blame] | 3517 | args_->dump_code_info_stack_maps_, |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3518 | args_->disassemble_code_, |
| 3519 | absolute_addresses, |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 3520 | args_->class_filter_, |
| 3521 | args_->method_filter_, |
| 3522 | args_->list_classes_, |
| 3523 | args_->list_methods_, |
David Brazdil | c03d7b6 | 2016-03-02 12:18:03 +0000 | [diff] [blame] | 3524 | args_->dump_header_only_, |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 3525 | args_->export_dex_location_, |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 3526 | args_->app_image_, |
| 3527 | args_->app_oat_, |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 3528 | args_->addr2instr_)); |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3529 | |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3530 | return (args_->boot_image_location_ != nullptr || |
| 3531 | args_->image_location_ != nullptr || |
| 3532 | !args_->imt_dump_.empty()) && |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3533 | !args_->symbolize_; |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3534 | } |
| 3535 | |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3536 | virtual bool ExecuteWithoutRuntime() OVERRIDE { |
| 3537 | CHECK(args_ != nullptr); |
Andreas Gampe | c24f399 | 2014-12-17 20:40:11 -0800 | [diff] [blame] | 3538 | CHECK(args_->oat_filename_ != nullptr); |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3539 | |
Mathieu Chartier | d424d08 | 2014-10-15 10:31:46 -0700 | [diff] [blame] | 3540 | MemMap::Init(); |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3541 | |
Andreas Gampe | c24f399 | 2014-12-17 20:40:11 -0800 | [diff] [blame] | 3542 | if (args_->symbolize_) { |
David Srbecky | 2fdd03c | 2016-03-10 15:32:37 +0000 | [diff] [blame] | 3543 | // ELF has special kind of section called SHT_NOBITS which allows us to create |
| 3544 | // sections which exist but their data is omitted from the ELF file to save space. |
| 3545 | // This is what "strip --only-keep-debug" does when it creates separate ELF file |
| 3546 | // with only debug data. We use it in similar way to exclude .rodata and .text. |
| 3547 | bool no_bits = args_->only_keep_debug_; |
| 3548 | return SymbolizeOat(args_->oat_filename_, args_->output_name_, no_bits) == EXIT_SUCCESS; |
Andreas Gampe | c24f399 | 2014-12-17 20:40:11 -0800 | [diff] [blame] | 3549 | } else { |
| 3550 | return DumpOat(nullptr, |
| 3551 | args_->oat_filename_, |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 3552 | oat_dumper_options_.get(), |
Andreas Gampe | c24f399 | 2014-12-17 20:40:11 -0800 | [diff] [blame] | 3553 | args_->os_) == EXIT_SUCCESS; |
| 3554 | } |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3555 | } |
| 3556 | |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3557 | virtual bool ExecuteWithRuntime(Runtime* runtime) { |
| 3558 | CHECK(args_ != nullptr); |
| 3559 | |
Andreas Gampe | ebfc1ac | 2016-09-29 19:50:27 -0700 | [diff] [blame] | 3560 | if (!args_->imt_dump_.empty() || args_->imt_stat_dump_) { |
| 3561 | return IMTDumper::Dump(runtime, |
| 3562 | args_->imt_dump_, |
| 3563 | args_->imt_stat_dump_, |
| 3564 | args_->oat_filename_); |
Andreas Gampe | 9fded87 | 2016-09-25 16:08:35 -0700 | [diff] [blame] | 3565 | } |
| 3566 | |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3567 | if (args_->oat_filename_ != nullptr) { |
| 3568 | return DumpOat(runtime, |
| 3569 | args_->oat_filename_, |
Anestis Bechtsoudis | 32f500d | 2015-02-22 22:32:57 -0800 | [diff] [blame] | 3570 | oat_dumper_options_.get(), |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3571 | args_->os_) == EXIT_SUCCESS; |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3572 | } |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3573 | |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 3574 | return DumpImages(runtime, oat_dumper_options_.get(), args_->os_) == EXIT_SUCCESS; |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3575 | } |
| 3576 | |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3577 | std::unique_ptr<OatDumperOptions> oat_dumper_options_; |
| 3578 | }; |
Andreas Gampe | 00b25f3 | 2014-09-17 21:49:05 -0700 | [diff] [blame] | 3579 | |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 3580 | } // namespace art |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 3581 | |
| 3582 | int main(int argc, char** argv) { |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 3583 | art::OatdumpMain main; |
| 3584 | return main.Main(argc, argv); |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 3585 | } |