blob: 16b303e180eba11e9c1d5c9cf35cf324ea2f9670 [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"
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -070030 " Example: --image=/data/art-cache/boot.art\n"
Brian Carlstrome24fa612011-09-29 00:53:55 -070031 "\n");
32 // TODO: remove this by inferring from --image
33 fprintf(stderr,
34 " --oat=<file.oat>: specifies the required oat filename.\n"
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -070035 " Example: --image=/data/art-cache/boot.oat\n"
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070036 "\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"
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -070043 " Example: --boot-image=/data/art-cache/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]);
Brian Carlstromb7bbba42011-10-13 14:58:47 -070089 if (false) {
90 LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i];
91 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070092 if (option.starts_with("--dex-file=")) {
93 dex_filenames.push_back(option.substr(strlen("--dex-file=")).data());
94 } else if (option.starts_with("--method=")) {
95 method_names.push_back(option.substr(strlen("--method=")).data());
Brian Carlstrome24fa612011-09-29 00:53:55 -070096 } else if (option.starts_with("--oat=")) {
97 oat_filename = option.substr(strlen("--oat=")).data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070098 } else if (option.starts_with("--image=")) {
99 image_filename = option.substr(strlen("--image=")).data();
100 } else if (option.starts_with("--base=")) {
101 const char* image_base_str = option.substr(strlen("--base=")).data();
102 char* end;
103 image_base = strtoul(image_base_str, &end, 16);
104 if (end == image_base_str || *end != '\0') {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700105 fprintf(stderr, "Failed to parse hexadecimal value for option %s\n", option.data());
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700106 usage();
107 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700108 } else if (option.starts_with("--boot-image=")) {
109 const char* boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700110 boot_image_option.clear();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700111 boot_image_option += "-Ximage:";
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700112 boot_image_option += boot_image_filename;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700113 } else if (option.starts_with("--host-prefix=")) {
114 host_prefix = option.substr(strlen("--host-prefix=")).data();
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700115 } else if (option.starts_with("-Xms")) {
116 Xms = option.data();
117 } else if (option.starts_with("-Xmx")) {
118 Xmx = option.data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700119 } else {
120 fprintf(stderr, "unknown argument %s\n", option.data());
121 usage();
122 }
123 }
124
Brian Carlstrome24fa612011-09-29 00:53:55 -0700125 if (oat_filename == NULL) {
126 fprintf(stderr, "--oat file name not specified\n");
127 return EXIT_FAILURE;
128 }
129
Brian Carlstromaded5f72011-10-07 17:15:04 -0700130 if (image_filename == NULL && boot_image_option.empty()) {
131 fprintf(stderr, "Either --image or --boot-image must be specified\n");
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700132 return EXIT_FAILURE;
133 }
134
Brian Carlstrom78128a62011-09-15 17:21:19 -0700135 if (dex_filenames.empty()) {
136 fprintf(stderr, "no --dex-file values specified\n");
137 return EXIT_FAILURE;
138 }
139
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700140 if (boot_image_option.empty()) {
141 if (image_base == 0) {
142 fprintf(stderr, "non-zero --base not specified\n");
143 return EXIT_FAILURE;
144 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700145 }
146
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700147 Runtime::Options options;
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700148 options.push_back(std::make_pair("compiler", reinterpret_cast<void*>(NULL)));
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700149 std::string boot_class_path_string;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700150 if (boot_image_option.empty()) {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700151 boot_class_path_string += "-Xbootclasspath:";
152 for (size_t i = 0; i < dex_filenames.size()-1; i++) {
153 boot_class_path_string += dex_filenames[i];
154 boot_class_path_string += ":";
155 }
156 boot_class_path_string += dex_filenames[dex_filenames.size()-1];
157 options.push_back(std::make_pair(boot_class_path_string.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700158 } else {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700159 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
160 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700161 if (Xms != NULL) {
162 options.push_back(std::make_pair(Xms, reinterpret_cast<void*>(NULL)));
163 }
164 if (Xmx != NULL) {
165 options.push_back(std::make_pair(Xmx, reinterpret_cast<void*>(NULL)));
166 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700167 if (!host_prefix.empty()) {
168 options.push_back(std::make_pair("host-prefix", host_prefix.c_str()));
169 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700170 UniquePtr<Runtime> runtime(Runtime::Create(options, false));
171 if (runtime.get() == NULL) {
172 fprintf(stderr, "could not create runtime\n");
173 return EXIT_FAILURE;
174 }
175 ClassLinker* class_linker = runtime->GetClassLinker();
176
Brian Carlstrome24fa612011-09-29 00:53:55 -0700177 // If we have an existing boot image, position new space after its oat file
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700178 if (Heap::GetSpaces().size() > 1) {
179 Space* last_image_space = Heap::GetSpaces()[Heap::GetSpaces().size()-2];
180 CHECK(last_image_space != NULL);
181 CHECK(last_image_space->IsImageSpace());
182 CHECK(!Heap::GetSpaces()[Heap::GetSpaces().size()-1]->IsImageSpace());
183 byte* oat_limit_addr = last_image_space->GetImageHeader().GetOatLimitAddr();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700184 image_base = RoundUp(reinterpret_cast<uintptr_t>(oat_limit_addr), kPageSize);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700185 }
186
187 // ClassLoader creation needs to come after Runtime::Create
188 const ClassLoader* class_loader;
189 if (boot_image_option.empty()) {
190 class_loader = NULL;
191 } else {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700192 std::vector<const DexFile*> dex_files;
193 DexFile::OpenDexFiles(dex_filenames, dex_files, host_prefix);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700194 for (size_t i = 0; i < dex_files.size(); i++) {
195 class_linker->RegisterDexFile(*dex_files[i]);
196 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700197 class_loader = PathClassLoader::AllocCompileTime(dex_files);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700198 }
199
Brian Carlstrome24fa612011-09-29 00:53:55 -0700200 // if we loaded an existing image, we will reuse values from the image roots.
Brian Carlstrom16192862011-09-12 17:50:06 -0700201 if (!runtime->HasJniStubArray()) {
202 runtime->SetJniStubArray(JniCompiler::CreateJniStub(kThumb2));
203 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700204 if (!runtime->HasAbstractMethodErrorStubArray()) {
205 runtime->SetAbstractMethodErrorStubArray(Compiler::CreateAbstractMethodErrorStub(kThumb2));
206 }
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700207 for (int i = 0; i < Runtime::kLastTrampolineMethodType; i++) {
Ian Rogers1cb0a1d2011-10-06 15:24:35 -0700208 Runtime::TrampolineType type = Runtime::TrampolineType(i);
209 if (!runtime->HasResolutionStubArray(type)) {
210 runtime->SetResolutionStubArray(Compiler::CreateResolutionStub(kThumb2, type), type);
211 }
Ian Rogersad25ac52011-10-04 19:13:33 -0700212 }
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700213 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
214 Runtime::CalleeSaveType type = Runtime::CalleeSaveType(i);
215 if (!runtime->HasCalleeSaveMethod(type)) {
216 runtime->SetCalleeSaveMethod(runtime->CreateCalleeSaveMethod(kThumb2, type), type);
217 }
Ian Rogersff1ed472011-09-20 13:46:24 -0700218 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700219 Compiler compiler(kThumb2, image_filename != NULL);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700220 if (method_names.empty()) {
221 compiler.CompileAll(class_loader);
222 } else {
223 for (size_t i = 0; i < method_names.size(); i++) {
224 // names are actually class_descriptor + name + signature.
225 // example: Ljava/lang/Object;<init>()V
226 StringPiece method_name = method_names[i];
227 size_t end_of_class_descriptor = method_name.find(';');
228 if (end_of_class_descriptor == method_name.npos) {
229 fprintf(stderr, "could not find class descriptor in method %s\n", method_name.data());
230 return EXIT_FAILURE;
231 }
232 end_of_class_descriptor++; // want to include ;
233 std::string class_descriptor = method_name.substr(0, end_of_class_descriptor).ToString();
234 size_t end_of_name = method_name.find('(', end_of_class_descriptor);
235 if (end_of_name == method_name.npos) {
236 fprintf(stderr, "could not find start of method signature in method %s\n", method_name.data());
237 return EXIT_FAILURE;
238 }
239 std::string name = method_name.substr(end_of_class_descriptor,
240 end_of_name - end_of_class_descriptor).ToString();
241 std::string signature = method_name.substr(end_of_name).ToString();
242
243 Class* klass = class_linker->FindClass(class_descriptor, class_loader);
244 if (klass == NULL) {
245 fprintf(stderr, "could not find class for descriptor %s in method %s\n",
246 class_descriptor.c_str(), method_name.data());
247 return EXIT_FAILURE;
248 }
249 Method* method = klass->FindDirectMethod(name, signature);
250 if (method == NULL) {
251 method = klass->FindVirtualMethod(name, signature);
252 }
253 if (method == NULL) {
254 fprintf(stderr, "could not find method %s with signature %s in class %s for method argument %s\n",
255 name.c_str(),
256 signature.c_str(),
257 class_descriptor.c_str(),
258 method_name.data());
259 return EXIT_FAILURE;
260 }
261 compiler.CompileOne(method);
262 }
263 }
264
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700265 if (!OatWriter::Create(oat_filename, class_loader, compiler)) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700266 fprintf(stderr, "Failed to create oat file %s\n", oat_filename.c_str());
267 return EXIT_FAILURE;
268 }
269
Brian Carlstromaded5f72011-10-07 17:15:04 -0700270 if (image_filename == NULL) {
271 return EXIT_SUCCESS;
272 }
273 CHECK(compiler.IsImage());
274
Brian Carlstrome24fa612011-09-29 00:53:55 -0700275 ImageWriter image_writer;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700276 if (!image_writer.Write(image_filename, image_base, oat_filename, host_prefix)) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700277 fprintf(stderr, "Failed to create image file %s\n", image_filename);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700278 return EXIT_FAILURE;
279 }
280
281 return EXIT_SUCCESS;
282}
283
284} // namespace art
285
286int main(int argc, char** argv) {
287 return art::dex2oat(argc, argv);
288}