blob: 728e389fcf70e76a517333df952f00a35ceae317 [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 * Main driver 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#include "dexlayout.h"
24
25#include <stdio.h>
26#include <string.h>
27#include <unistd.h>
David Sehrcdcfde72016-09-26 07:44:04 -070028#include <sys/types.h>
29#include <sys/stat.h>
30#include <fcntl.h>
David Sehr7629f602016-08-07 16:01:51 -070031
David Sehr9aa352e2016-09-15 18:13:52 -070032#include "base/logging.h"
David Sehrcdcfde72016-09-26 07:44:04 -070033#include "jit/offline_profiling_info.h"
David Sehr7629f602016-08-07 16:01:51 -070034#include "mem_map.h"
David Sehr7629f602016-08-07 16:01:51 -070035
36namespace art {
37
38static const char* kProgramName = "dexlayout";
39
40/*
41 * Shows usage.
42 */
43static void Usage(void) {
David Sehrcdcfde72016-09-26 07:44:04 -070044 fprintf(stderr, "Copyright (C) 2016 The Android Open Source Project\n\n");
45 fprintf(stderr, "%s: [-a] [-c] [-d] [-e] [-f] [-h] [-i] [-l layout] [-o outfile] [-p profile]"
Jeff Haoa8621002016-10-04 18:13:44 +000046 " [-s] [-w directory] dexfile...\n\n", kProgramName);
David Sehr7629f602016-08-07 16:01:51 -070047 fprintf(stderr, " -a : display annotations\n");
48 fprintf(stderr, " -b : build dex_ir\n");
49 fprintf(stderr, " -c : verify checksum and exit\n");
50 fprintf(stderr, " -d : disassemble code sections\n");
51 fprintf(stderr, " -e : display exported items only\n");
52 fprintf(stderr, " -f : display summary information from file header\n");
53 fprintf(stderr, " -g : display CFG for dex\n");
54 fprintf(stderr, " -h : display file header details\n");
55 fprintf(stderr, " -i : ignore checksum failures\n");
56 fprintf(stderr, " -l : output layout, either 'plain' or 'xml'\n");
57 fprintf(stderr, " -o : output file name (defaults to stdout)\n");
David Sehrcdcfde72016-09-26 07:44:04 -070058 fprintf(stderr, " -p : profile file name (defaults to no profile)\n");
59 fprintf(stderr, " -s : visualize reference pattern\n");
Jeff Haoa8621002016-10-04 18:13:44 +000060 fprintf(stderr, " -w : output dex directory \n");
David Sehr7629f602016-08-07 16:01:51 -070061}
62
63/*
64 * Main driver of the dexlayout utility.
65 */
66int DexlayoutDriver(int argc, char** argv) {
67 // Art specific set up.
68 InitLogging(argv);
69 MemMap::Init();
70
71 // Reset options.
72 bool want_usage = false;
73 memset(&options_, 0, sizeof(options_));
74 options_.verbose_ = true;
75
76 // Parse all arguments.
77 while (1) {
Jeff Haoa8621002016-10-04 18:13:44 +000078 const int ic = getopt(argc, argv, "abcdefghil:o:p:sw:");
David Sehr7629f602016-08-07 16:01:51 -070079 if (ic < 0) {
80 break; // done
81 }
82 switch (ic) {
83 case 'a': // display annotations
84 options_.show_annotations_ = true;
85 break;
86 case 'b': // build dex_ir
87 options_.build_dex_ir_ = true;
88 break;
89 case 'c': // verify the checksum then exit
90 options_.checksum_only_ = true;
91 break;
92 case 'd': // disassemble Dalvik instructions
93 options_.disassemble_ = true;
94 break;
95 case 'e': // exported items only
96 options_.exports_only_ = true;
97 break;
98 case 'f': // display outer file header
99 options_.show_file_headers_ = true;
100 break;
101 case 'g': // display cfg
102 options_.show_cfg_ = true;
103 break;
104 case 'h': // display section headers, i.e. all meta-data
105 options_.show_section_headers_ = true;
106 break;
107 case 'i': // continue even if checksum is bad
108 options_.ignore_bad_checksum_ = true;
109 break;
110 case 'l': // layout
111 if (strcmp(optarg, "plain") == 0) {
112 options_.output_format_ = kOutputPlain;
113 } else if (strcmp(optarg, "xml") == 0) {
114 options_.output_format_ = kOutputXml;
115 options_.verbose_ = false;
116 } else {
117 want_usage = true;
118 }
119 break;
120 case 'o': // output file
121 options_.output_file_name_ = optarg;
122 break;
David Sehrcdcfde72016-09-26 07:44:04 -0700123 case 'p': // profile file
124 options_.profile_file_name_ = optarg;
125 break;
126 case 's': // visualize access pattern
127 options_.visualize_pattern_ = true;
128 options_.verbose_ = false;
129 break;
Jeff Haoa8621002016-10-04 18:13:44 +0000130 case 'w': // output dex files directory
131 options_.output_dex_directory_ = optarg;
Jeff Hao3ab96b42016-09-09 18:35:01 -0700132 break;
David Sehr7629f602016-08-07 16:01:51 -0700133 default:
134 want_usage = true;
135 break;
136 } // switch
137 } // while
138
139 // Detect early problems.
140 if (optind == argc) {
141 fprintf(stderr, "%s: no file specified\n", kProgramName);
142 want_usage = true;
143 }
144 if (options_.checksum_only_ && options_.ignore_bad_checksum_) {
145 fprintf(stderr, "Can't specify both -c and -i\n");
146 want_usage = true;
147 }
148 if (want_usage) {
149 Usage();
150 return 2;
151 }
152
153 // Open alternative output file.
154 if (options_.output_file_name_) {
155 out_file_ = fopen(options_.output_file_name_, "w");
156 if (!out_file_) {
157 fprintf(stderr, "Can't open %s\n", options_.output_file_name_);
158 return 1;
159 }
160 }
161
David Sehrcdcfde72016-09-26 07:44:04 -0700162 // Open profile file.
163 if (options_.profile_file_name_) {
164 int profile_fd = open(options_.profile_file_name_, O_RDONLY);
165 if (profile_fd < 0) {
166 fprintf(stderr, "Can't open %s\n", options_.profile_file_name_);
167 return 1;
168 }
169 profile_info_ = new ProfileCompilationInfo();
170 if (!profile_info_->Load(profile_fd)) {
171 fprintf(stderr, "Can't read profile info from %s\n", options_.profile_file_name_);
172 return 1;
173 }
174 }
175
David Sehr7629f602016-08-07 16:01:51 -0700176 // Process all files supplied on command line.
177 int result = 0;
178 while (optind < argc) {
179 result |= ProcessFile(argv[optind++]);
180 } // while
181 return result != 0;
182}
183
184} // namespace art
185
186int main(int argc, char** argv) {
187 return art::DexlayoutDriver(argc, argv);
188}