blob: 8d181d67a2e3c5a0b5a1a73cd79000cbdc862320 [file] [log] [blame]
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3#include <stdio.h>
4#include <stdlib.h>
5
6#include <string>
7#include <vector>
8
9#include "class_linker.h"
10#include "class_loader.h"
11#include "compiler.h"
12#include "image_writer.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070013#include "oat_writer.h"
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070014#include "runtime.h"
15#include "stringpiece.h"
16
17namespace art {
18
19static void usage() {
20 fprintf(stderr,
21 "Usage: dex2oat [options]...\n"
22 "\n");
23 fprintf(stderr,
Brian Carlstrom78128a62011-09-15 17:21:19 -070024 " --dex-file=<dex-file>: specifies a .dex file to compile. At least one .dex\n"
25 " file must be specified. \n"
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070026 " Example: --dex-file=/system/framework/core.jar\n"
27 "\n");
28 fprintf(stderr,
Brian Carlstrome24fa612011-09-29 00:53:55 -070029 " --image=<file.art>: specifies the required output image filename.\n"
30 " Example: --image=/system/framework/boot.art\n"
31 "\n");
32 // TODO: remove this by inferring from --image
33 fprintf(stderr,
34 " --oat=<file.oat>: specifies the required oat filename.\n"
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070035 " Example: --image=/system/framework/boot.oat\n"
36 "\n");
37 fprintf(stderr,
38 " --base=<hex-address>: specifies the base address when creating a boot image.\n"
39 " Example: --base=0x50000000\n"
40 "\n");
41 fprintf(stderr,
Brian Carlstrome24fa612011-09-29 00:53:55 -070042 " --boot-image=<file.art>: provide the image file for the boot class path.\n"
43 " Example: --boot-image=/system/framework/boot.art\n"
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070044 "\n");
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070045 fprintf(stderr,
46 " --method may be used to limit compilation to a subset of methods.\n"
47 " Example: --method=Ljava/lang/Object;<init>()V\n"
48 "\n");
Brian Carlstrom16192862011-09-12 17:50:06 -070049 fprintf(stderr,
Brian Carlstrom58ae9412011-10-04 00:56:06 -070050 " --host-prefix may be used to translate host paths to target paths during\n"
51 " cross compilation.\n"
52 " Example: --host-prefix=out/target/product/crespo\n"
Brian Carlstrom16192862011-09-12 17:50:06 -070053 "\n");
Brian Carlstrom27ec9612011-09-19 20:20:38 -070054 fprintf(stderr,
55 " -Xms<n> may be used to specify an initial heap size for the runtime used to\n"
56 " run dex2oat\n"
57 " Example: -Xms256m\n"
58 "\n");
59 fprintf(stderr,
60 " -Xmx<n> may be used to specify a maximum heap size for the runtime used to\n"
61 " run dex2oat\n"
62 " Example: -Xmx256m\n"
63 "\n");
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070064 exit(EXIT_FAILURE);
65}
66
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070067int dex2oat(int argc, char** argv) {
68 // Skip over argv[0].
69 argv++;
70 argc--;
71
72 if (argc == 0) {
73 fprintf(stderr, "no arguments specified\n");
74 usage();
75 }
76
77 std::vector<const char*> dex_filenames;
78 std::vector<const char*> method_names;
Brian Carlstrome24fa612011-09-29 00:53:55 -070079 std::string oat_filename;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070080 const char* image_filename = NULL;
81 std::string boot_image_option;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070082 uintptr_t image_base = 0;
Brian Carlstrom58ae9412011-10-04 00:56:06 -070083 std::string host_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -070084 const char* Xms = NULL;
85 const char* Xmx = NULL;
Brian Carlstrom16192862011-09-12 17:50:06 -070086
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070087 for (int i = 0; i < argc; i++) {
88 const StringPiece option(argv[i]);
89 if (option.starts_with("--dex-file=")) {
90 dex_filenames.push_back(option.substr(strlen("--dex-file=")).data());
91 } else if (option.starts_with("--method=")) {
92 method_names.push_back(option.substr(strlen("--method=")).data());
Brian Carlstrome24fa612011-09-29 00:53:55 -070093 } else if (option.starts_with("--oat=")) {
94 oat_filename = option.substr(strlen("--oat=")).data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070095 } else if (option.starts_with("--image=")) {
96 image_filename = option.substr(strlen("--image=")).data();
97 } else if (option.starts_with("--base=")) {
98 const char* image_base_str = option.substr(strlen("--base=")).data();
99 char* end;
100 image_base = strtoul(image_base_str, &end, 16);
101 if (end == image_base_str || *end != '\0') {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700102 fprintf(stderr, "Failed to parse hexadecimal value for option %s\n", option.data());
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700103 usage();
104 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700105 } else if (option.starts_with("--boot-image=")) {
106 const char* boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700107 boot_image_option.clear();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700108 boot_image_option += "-Ximage:";
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700109 boot_image_option += boot_image_filename;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700110 } else if (option.starts_with("--host-prefix=")) {
111 host_prefix = option.substr(strlen("--host-prefix=")).data();
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700112 } else if (option.starts_with("-Xms")) {
113 Xms = option.data();
114 } else if (option.starts_with("-Xmx")) {
115 Xmx = option.data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700116 } else {
117 fprintf(stderr, "unknown argument %s\n", option.data());
118 usage();
119 }
120 }
121
Brian Carlstrome24fa612011-09-29 00:53:55 -0700122 if (oat_filename == NULL) {
123 fprintf(stderr, "--oat file name not specified\n");
124 return EXIT_FAILURE;
125 }
126
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700127 if (image_filename == NULL) {
128 fprintf(stderr, "--image file name not specified\n");
129 return EXIT_FAILURE;
130 }
131
Brian Carlstrom78128a62011-09-15 17:21:19 -0700132 if (dex_filenames.empty()) {
133 fprintf(stderr, "no --dex-file values specified\n");
134 return EXIT_FAILURE;
135 }
136
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700137 if (boot_image_option.empty()) {
138 if (image_base == 0) {
139 fprintf(stderr, "non-zero --base not specified\n");
140 return EXIT_FAILURE;
141 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700142 }
143
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700144 Runtime::Options options;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700145 std::string boot_class_path_string;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700146 if (boot_image_option.empty()) {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700147 boot_class_path_string += "-Xbootclasspath:";
148 for (size_t i = 0; i < dex_filenames.size()-1; i++) {
149 boot_class_path_string += dex_filenames[i];
150 boot_class_path_string += ":";
151 }
152 boot_class_path_string += dex_filenames[dex_filenames.size()-1];
153 options.push_back(std::make_pair(boot_class_path_string.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700154 } else {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700155 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
156 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700157 if (Xms != NULL) {
158 options.push_back(std::make_pair(Xms, reinterpret_cast<void*>(NULL)));
159 }
160 if (Xmx != NULL) {
161 options.push_back(std::make_pair(Xmx, reinterpret_cast<void*>(NULL)));
162 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700163 if (!host_prefix.empty()) {
164 options.push_back(std::make_pair("host-prefix", host_prefix.c_str()));
165 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700166 UniquePtr<Runtime> runtime(Runtime::Create(options, false));
167 if (runtime.get() == NULL) {
168 fprintf(stderr, "could not create runtime\n");
169 return EXIT_FAILURE;
170 }
171 ClassLinker* class_linker = runtime->GetClassLinker();
172
Brian Carlstrome24fa612011-09-29 00:53:55 -0700173 // If we have an existing boot image, position new space after its oat file
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700174 if (Heap::GetSpaces().size() > 1) {
175 Space* last_image_space = Heap::GetSpaces()[Heap::GetSpaces().size()-2];
176 CHECK(last_image_space != NULL);
177 CHECK(last_image_space->IsImageSpace());
178 CHECK(!Heap::GetSpaces()[Heap::GetSpaces().size()-1]->IsImageSpace());
179 byte* oat_limit_addr = last_image_space->GetImageHeader().GetOatLimitAddr();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700180 image_base = RoundUp(reinterpret_cast<uintptr_t>(oat_limit_addr), kPageSize);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700181 }
182
183 // ClassLoader creation needs to come after Runtime::Create
184 const ClassLoader* class_loader;
185 if (boot_image_option.empty()) {
186 class_loader = NULL;
187 } else {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700188 std::vector<const DexFile*> dex_files;
189 DexFile::OpenDexFiles(dex_filenames, dex_files, host_prefix);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700190 for (size_t i = 0; i < dex_files.size(); i++) {
191 class_linker->RegisterDexFile(*dex_files[i]);
192 }
193 class_loader = PathClassLoader::Alloc(dex_files);
194 }
195
Brian Carlstrome24fa612011-09-29 00:53:55 -0700196 // if we loaded an existing image, we will reuse values from the image roots.
Brian Carlstrom16192862011-09-12 17:50:06 -0700197 if (!runtime->HasJniStubArray()) {
198 runtime->SetJniStubArray(JniCompiler::CreateJniStub(kThumb2));
199 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700200 if (!runtime->HasAbstractMethodErrorStubArray()) {
201 runtime->SetAbstractMethodErrorStubArray(Compiler::CreateAbstractMethodErrorStub(kThumb2));
202 }
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700203 for (int i = 0; i < Runtime::kLastTrampolineMethodType; i++) {
Ian Rogers1cb0a1d2011-10-06 15:24:35 -0700204 Runtime::TrampolineType type = Runtime::TrampolineType(i);
205 if (!runtime->HasResolutionStubArray(type)) {
206 runtime->SetResolutionStubArray(Compiler::CreateResolutionStub(kThumb2, type), type);
207 }
Ian Rogersad25ac52011-10-04 19:13:33 -0700208 }
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700209 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
210 Runtime::CalleeSaveType type = Runtime::CalleeSaveType(i);
211 if (!runtime->HasCalleeSaveMethod(type)) {
212 runtime->SetCalleeSaveMethod(runtime->CreateCalleeSaveMethod(kThumb2, type), type);
213 }
Ian Rogersff1ed472011-09-20 13:46:24 -0700214 }
Ian Rogers2c8f6532011-09-02 17:16:34 -0700215 Compiler compiler(kThumb2);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700216 if (method_names.empty()) {
217 compiler.CompileAll(class_loader);
218 } else {
219 for (size_t i = 0; i < method_names.size(); i++) {
220 // names are actually class_descriptor + name + signature.
221 // example: Ljava/lang/Object;<init>()V
222 StringPiece method_name = method_names[i];
223 size_t end_of_class_descriptor = method_name.find(';');
224 if (end_of_class_descriptor == method_name.npos) {
225 fprintf(stderr, "could not find class descriptor in method %s\n", method_name.data());
226 return EXIT_FAILURE;
227 }
228 end_of_class_descriptor++; // want to include ;
229 std::string class_descriptor = method_name.substr(0, end_of_class_descriptor).ToString();
230 size_t end_of_name = method_name.find('(', end_of_class_descriptor);
231 if (end_of_name == method_name.npos) {
232 fprintf(stderr, "could not find start of method signature in method %s\n", method_name.data());
233 return EXIT_FAILURE;
234 }
235 std::string name = method_name.substr(end_of_class_descriptor,
236 end_of_name - end_of_class_descriptor).ToString();
237 std::string signature = method_name.substr(end_of_name).ToString();
238
239 Class* klass = class_linker->FindClass(class_descriptor, class_loader);
240 if (klass == NULL) {
241 fprintf(stderr, "could not find class for descriptor %s in method %s\n",
242 class_descriptor.c_str(), method_name.data());
243 return EXIT_FAILURE;
244 }
245 Method* method = klass->FindDirectMethod(name, signature);
246 if (method == NULL) {
247 method = klass->FindVirtualMethod(name, signature);
248 }
249 if (method == NULL) {
250 fprintf(stderr, "could not find method %s with signature %s in class %s for method argument %s\n",
251 name.c_str(),
252 signature.c_str(),
253 class_descriptor.c_str(),
254 method_name.data());
255 return EXIT_FAILURE;
256 }
257 compiler.CompileOne(method);
258 }
259 }
260
Brian Carlstrome24fa612011-09-29 00:53:55 -0700261 if (!OatWriter::Create(oat_filename, class_loader)) {
262 fprintf(stderr, "Failed to create oat file %s\n", oat_filename.c_str());
263 return EXIT_FAILURE;
264 }
265
266 ImageWriter image_writer;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700267 if (!image_writer.Write(image_filename, image_base, oat_filename, host_prefix)) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700268 fprintf(stderr, "Failed to create image file %s\n", image_filename);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700269 return EXIT_FAILURE;
270 }
271
272 return EXIT_SUCCESS;
273}
274
275} // namespace art
276
277int main(int argc, char** argv) {
278 return art::dex2oat(argc, argv);
279}