blob: ed011d6771339dbb4efd1b65eb7918d5b69a2fa5 [file] [log] [blame]
David Sehr7629f602016-08-07 16:01:51 -07001/*
2 * Copyright (C) 2016 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 *
16 * Header file of the dexlayout utility.
17 *
18 * This is a tool to read dex files into an internal representation,
19 * reorganize the representation, and emit dex files with a better
20 * file layout.
21 */
22
23#ifndef ART_DEXLAYOUT_DEXLAYOUT_H_
24#define ART_DEXLAYOUT_DEXLAYOUT_H_
25
26#include <stdint.h>
27#include <stdio.h>
28
Jeff Haoea7c6292016-11-14 18:10:16 -080029#include "dex_ir.h"
30#include "mem_map.h"
31
David Sehr7629f602016-08-07 16:01:51 -070032namespace art {
33
Jeff Haoea7c6292016-11-14 18:10:16 -080034class DexFile;
35class Instruction;
David Sehrcdcfde72016-09-26 07:44:04 -070036class ProfileCompilationInfo;
37
David Sehr7629f602016-08-07 16:01:51 -070038/* Supported output formats. */
39enum OutputFormat {
40 kOutputPlain = 0, // default
41 kOutputXml, // XML-style
42};
43
44/* Command-line options. */
Jeff Haoea7c6292016-11-14 18:10:16 -080045class Options {
46 public:
47 Options() = default;
48
49 bool dump_ = false;
50 bool build_dex_ir_ = false;
51 bool checksum_only_ = false;
52 bool disassemble_ = false;
53 bool exports_only_ = false;
54 bool ignore_bad_checksum_ = false;
55 bool output_to_memmap_ = false;
56 bool show_annotations_ = false;
57 bool show_file_headers_ = false;
58 bool show_section_headers_ = false;
David Sehr93357492017-03-09 08:02:44 -080059 bool show_section_statistics_ = false;
Jeff Haoea7c6292016-11-14 18:10:16 -080060 bool verbose_ = false;
Jeff Hao0f153002017-07-06 10:27:15 -070061 // TODO: Set verify_output_ back to false by default. Was set to true for debugging b/62840842.
62 bool verify_output_ = true;
Jeff Haoea7c6292016-11-14 18:10:16 -080063 bool visualize_pattern_ = false;
64 OutputFormat output_format_ = kOutputPlain;
65 const char* output_dex_directory_ = nullptr;
66 const char* output_file_name_ = nullptr;
67 const char* profile_file_name_ = nullptr;
David Sehr7629f602016-08-07 16:01:51 -070068};
69
Jeff Haoea7c6292016-11-14 18:10:16 -080070class DexLayout {
71 public:
72 DexLayout(Options& options,
73 ProfileCompilationInfo* info,
74 FILE* out_file,
75 dex_ir::Header*
76 header = nullptr)
77 : options_(options), info_(info), out_file_(out_file), header_(header) { }
78
79 int ProcessFile(const char* file_name);
80 void ProcessDexFile(const char* file_name, const DexFile* dex_file, size_t dex_file_index);
81
82 dex_ir::Header* GetHeader() const { return header_; }
83 void SetHeader(dex_ir::Header* header) { header_ = header; }
84
85 MemMap* GetAndReleaseMemMap() { return mem_map_.release(); }
86
87 private:
88 void DumpAnnotationSetItem(dex_ir::AnnotationSetItem* set_item);
89 void DumpBytecodes(uint32_t idx, const dex_ir::CodeItem* code, uint32_t code_offset);
90 void DumpCatches(const dex_ir::CodeItem* code);
91 void DumpClass(int idx, char** last_package);
92 void DumpClassAnnotations(int idx);
93 void DumpClassDef(int idx);
94 void DumpCode(uint32_t idx, const dex_ir::CodeItem* code, uint32_t code_offset);
95 void DumpEncodedAnnotation(dex_ir::EncodedAnnotation* annotation);
96 void DumpEncodedValue(const dex_ir::EncodedValue* data);
97 void DumpFileHeader();
98 void DumpIField(uint32_t idx, uint32_t flags, int i);
99 void DumpInstruction(const dex_ir::CodeItem* code,
100 uint32_t code_offset,
101 uint32_t insn_idx,
102 uint32_t insn_width,
103 const Instruction* dec_insn);
104 void DumpInterface(const dex_ir::TypeId* type_item, int i);
105 void DumpLocalInfo(const dex_ir::CodeItem* code);
106 void DumpMethod(uint32_t idx, uint32_t flags, const dex_ir::CodeItem* code, int i);
107 void DumpPositionInfo(const dex_ir::CodeItem* code);
108 void DumpSField(uint32_t idx, uint32_t flags, int i, dex_ir::EncodedValue* init);
Jeff Haoea7c6292016-11-14 18:10:16 -0800109 void DumpDexFile();
Jeff Hao042e8982016-10-19 11:17:11 -0700110
Jeff Haoe17f5892017-02-23 16:14:04 -0800111 std::vector<dex_ir::ClassData*> LayoutClassDefsAndClassData(const DexFile* dex_file);
Shubham Ajmera36a282b2017-04-03 10:04:28 -0700112 int32_t LayoutCodeItems(const DexFile* dex_file,
113 std::vector<dex_ir::ClassData*> new_class_data_order);
Mathieu Chartierfa0aa092017-03-27 15:43:54 -0700114 void LayoutStringData(const DexFile* dex_file);
Jeff Haoe17f5892017-02-23 16:14:04 -0800115 bool IsNextSectionCodeItemAligned(uint32_t offset);
Jeff Haoea7c6292016-11-14 18:10:16 -0800116 template<class T> void FixupSection(std::map<uint32_t, std::unique_ptr<T>>& map, uint32_t diff);
117 void FixupSections(uint32_t offset, uint32_t diff);
Jeff Hao042e8982016-10-19 11:17:11 -0700118
119 // Creates a new layout for the dex file based on profile info.
120 // Currently reorders ClassDefs, ClassDataItems, and CodeItems.
Jeff Haoea7c6292016-11-14 18:10:16 -0800121 void LayoutOutputFile(const DexFile* dex_file);
Jeff Haoec7f1a92017-03-13 16:24:24 -0700122 void OutputDexFile(const DexFile* dex_file);
Jeff Haoea7c6292016-11-14 18:10:16 -0800123
124 void DumpCFG(const DexFile* dex_file, int idx);
125 void DumpCFG(const DexFile* dex_file, uint32_t dex_method_idx, const DexFile::CodeItem* code);
126
127 Options& options_;
128 ProfileCompilationInfo* info_;
129 FILE* out_file_;
130 dex_ir::Header* header_;
131 std::unique_ptr<MemMap> mem_map_;
132
133 DISALLOW_COPY_AND_ASSIGN(DexLayout);
134};
David Sehr7629f602016-08-07 16:01:51 -0700135
136} // namespace art
137
138#endif // ART_DEXLAYOUT_DEXLAYOUT_H_