blob: a27b76e08c88dfee9d3c9918e13a2df6a1aa5121 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
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 Carlstrom69b15fb2011-09-03 12:25:21 -070016
17#include <stdio.h>
18#include <stdlib.h>
19
Brian Carlstromae826982011-11-09 01:33:42 -080020#include <iostream>
21#include <fstream>
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070022#include <string>
23#include <vector>
24
25#include "class_linker.h"
26#include "class_loader.h"
27#include "compiler.h"
Ian Rogers5e863dd2011-11-02 20:00:10 -070028#include "file.h"
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070029#include "image_writer.h"
Ian Rogers6f1dfe42011-12-08 17:28:34 -080030#include "leb128.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070031#include "oat_writer.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080032#include "object_utils.h"
Ian Rogers5e863dd2011-11-02 20:00:10 -070033#include "os.h"
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070034#include "runtime.h"
35#include "stringpiece.h"
Elliott Hughesbb551fa2012-01-25 16:35:29 -080036#include "timing_logger.h"
Brian Carlstroma6cc8932012-01-04 14:44:07 -080037#include "zip_archive.h"
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070038
39namespace art {
40
41static void usage() {
42 fprintf(stderr,
43 "Usage: dex2oat [options]...\n"
44 "\n");
45 fprintf(stderr,
Brian Carlstroma6cc8932012-01-04 14:44:07 -080046 " --dex-file=<dex-file>: specifies a .dex file to compile.\n"
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070047 " Example: --dex-file=/system/framework/core.jar\n"
48 "\n");
49 fprintf(stderr,
Brian Carlstroma6cc8932012-01-04 14:44:07 -080050 " --zip-fd=<file-descriptor>: specifies a file descriptor of a zip file\n"
51 " containing a classes.dex file to compile.\n"
52 " Example: --zip-fd=5\n"
53 "\n");
54 fprintf(stderr,
55 " --zip-name=<zip-name>: specifies a symbolic name for the file corresponding\n"
56 " to the file descriptor specified by --zip-fd.\n"
57 " Example: --zip-name=/system/app/Calculator.apk\n"
58 "\n");
59 fprintf(stderr,
60 " --oat-file=<file.oat>: specifies the required oat filename.\n"
61 " Example: --oat-file=/system/framework/boot.oat\n"
62 "\n");
63 fprintf(stderr,
64 " --oat-name=<oat-name>: specifies a symbolic name for the file corresponding\n"
65 " to the file descriptor specified by --oat-fd.\n"
66 " Example: --oat-name=/data/art-cache/system@app@Calculator.apk.oat\n"
Brian Carlstromae826982011-11-09 01:33:42 -080067 "\n");
68 fprintf(stderr,
69 " --image=<file.art>: specifies the output image filename.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080070 " Example: --image=/system/framework/boot.art\n"
Brian Carlstrome24fa612011-09-29 00:53:55 -070071 "\n");
Brian Carlstrome24fa612011-09-29 00:53:55 -070072 fprintf(stderr,
Brian Carlstromae826982011-11-09 01:33:42 -080073 " --image-classes=<classname-file>: specifies classes to include in an image.\n"
74 " Example: --image=frameworks/base/preloaded-classes\n"
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070075 "\n");
76 fprintf(stderr,
77 " --base=<hex-address>: specifies the base address when creating a boot image.\n"
78 " Example: --base=0x50000000\n"
79 "\n");
80 fprintf(stderr,
Brian Carlstrome24fa612011-09-29 00:53:55 -070081 " --boot-image=<file.art>: provide the image file for the boot class path.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080082 " Example: --boot-image=/system/framework/boot.art\n"
83 " Default: <host-prefix>/system/framework/boot.art\n"
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070084 "\n");
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070085 fprintf(stderr,
Brian Carlstrom58ae9412011-10-04 00:56:06 -070086 " --host-prefix may be used to translate host paths to target paths during\n"
87 " cross compilation.\n"
88 " Example: --host-prefix=out/target/product/crespo\n"
Brian Carlstromb0011262011-12-09 12:17:24 -080089 " Default: $ANDROID_PRODUCT_OUT\n"
Brian Carlstrom16192862011-09-12 17:50:06 -070090 "\n");
Brian Carlstrom27ec9612011-09-19 20:20:38 -070091 fprintf(stderr,
jeffhao5d840402011-10-24 17:09:45 -070092 " --runtime-arg <argument>: used to specify various arguments for the runtime,\n"
93 " such as initial heap size, maximum heap size, and verbose output.\n"
94 " Use a separate --runtime-arg switch for each argument.\n"
95 " Example: --runtime-arg -Xms256m\n"
Brian Carlstrom27ec9612011-09-19 20:20:38 -070096 "\n");
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070097 exit(EXIT_FAILURE);
98}
99
Brian Carlstromae826982011-11-09 01:33:42 -0800100class Dex2Oat {
101 public:
102
Elliott Hughes5523ee02012-02-03 18:18:34 -0800103 static Dex2Oat* Create(Runtime::Options& options, size_t thread_count) {
Brian Carlstromae826982011-11-09 01:33:42 -0800104 UniquePtr<Runtime> runtime(CreateRuntime(options));
105 if (runtime.get() == NULL) {
106 return NULL;
107 }
Elliott Hughes5523ee02012-02-03 18:18:34 -0800108 return new Dex2Oat(runtime.release(), thread_count);
Brian Carlstromae826982011-11-09 01:33:42 -0800109 }
110
111 ~Dex2Oat() {
112 delete runtime_;
Elliott Hughes5523ee02012-02-03 18:18:34 -0800113 LOG(INFO) << "dex2oat took " << PrettyDuration(NanoTime() - start_ns_) << " (threads: " << thread_count_ << ")";
Brian Carlstromae826982011-11-09 01:33:42 -0800114 }
115
116 // Make a list of descriptors for classes to include in the image
117 const std::set<std::string>* GetImageClassDescriptors(const char* image_classes_filename) {
118 UniquePtr<std::ifstream> image_classes_file(new std::ifstream(image_classes_filename, std::ifstream::in));
119 if (image_classes_file.get() == NULL) {
120 LOG(ERROR) << "Failed to open image classes file " << image_classes_filename;
121 return NULL;
122 }
123
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800124 // Load all the classes specified in the file
Brian Carlstromae826982011-11-09 01:33:42 -0800125 ClassLinker* class_linker = runtime_->GetClassLinker();
126 while (image_classes_file->good()) {
127 std::string dot;
128 std::getline(*image_classes_file.get(), dot);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800129 if (StartsWith(dot, "#") || dot.empty()) {
Brian Carlstromae826982011-11-09 01:33:42 -0800130 continue;
131 }
Elliott Hughes95572412011-12-13 18:14:20 -0800132 std::string descriptor(DotToDescriptor(dot.c_str()));
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800133 SirtRef<Class> klass(class_linker->FindSystemClass(descriptor.c_str()));
Brian Carlstromae826982011-11-09 01:33:42 -0800134 if (klass.get() == NULL) {
135 LOG(WARNING) << "Failed to find class " << descriptor;
136 Thread::Current()->ClearException();
137 }
138 }
139 image_classes_file->close();
140
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800141 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
142 // exceptions are resolved by the verifier when there is a catch block in an interested method.
143 // Do this here so that exception classes appear to have been specified image classes.
144 std::set<std::pair<uint16_t, const DexFile*> > unresolved_exception_types;
145 do {
146 unresolved_exception_types.clear();
147 class_linker->VisitClasses(ResolveCatchBlockExceptionsClassVisitor,
148 &unresolved_exception_types);
149 typedef std::set<std::pair<uint16_t, const DexFile*> >::const_iterator It; // TODO: C++0x auto
150 for (It it = unresolved_exception_types.begin(),
151 end = unresolved_exception_types.end();
152 it != end; ++it) {
153 uint16_t exception_type_idx = it->first;
154 const DexFile* dex_file = it->second;
155 DexCache* dex_cache = class_linker->FindDexCache(*dex_file);
156 ClassLoader* class_loader = NULL;
157 SirtRef<Class> klass(class_linker->ResolveType(*dex_file, exception_type_idx, dex_cache,
158 class_loader));
159 if (klass.get() == NULL) {
160 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
161 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
162 LOG(FATAL) << "Failed to resolve class " << descriptor;
163 }
164 DCHECK(klass->IsThrowableClass());
165 }
166 // Resolving exceptions may load classes that reference more exceptions, iterate until no
167 // more are found
168 } while (!unresolved_exception_types.empty());
169
Brian Carlstromae826982011-11-09 01:33:42 -0800170 // We walk the roots looking for classes so that we'll pick up the
171 // above classes plus any classes them depend on such super
172 // classes, interfaces, and the required ClassLinker roots.
173 UniquePtr<std::set<std::string> > image_classes(new std::set<std::string>());
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800174 class_linker->VisitClasses(RecordImageClassesVisitor, image_classes.get());
Brian Carlstromae826982011-11-09 01:33:42 -0800175 CHECK_NE(image_classes->size(), 0U);
176 return image_classes.release();
177 }
178
179 bool CreateOatFile(const std::string& boot_image_option,
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800180 const std::vector<const DexFile*>& dex_files,
Brian Carlstromae826982011-11-09 01:33:42 -0800181 File* oat_file,
182 bool image,
183 const std::set<std::string>* image_classes) {
184 // SirtRef and ClassLoader creation needs to come after Runtime::Create
185 UniquePtr<SirtRef<ClassLoader> > class_loader(new SirtRef<ClassLoader>(NULL));
186 if (class_loader.get() == NULL) {
187 LOG(ERROR) << "Failed to create SirtRef for class loader";
188 return false;
189 }
190
Brian Carlstromae826982011-11-09 01:33:42 -0800191 if (!boot_image_option.empty()) {
192 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstromae826982011-11-09 01:33:42 -0800193 std::vector<const DexFile*> class_path_files(dex_files);
194 OpenClassPathFiles(runtime_->GetClassPath(), class_path_files);
195 for (size_t i = 0; i < class_path_files.size(); i++) {
196 class_linker->RegisterDexFile(*class_path_files[i]);
197 }
198 class_loader.get()->reset(PathClassLoader::AllocCompileTime(class_path_files));
Brian Carlstromae826982011-11-09 01:33:42 -0800199 }
200
Elliott Hughes5523ee02012-02-03 18:18:34 -0800201 Compiler compiler(instruction_set_, image, thread_count_, image_classes);
Brian Carlstromae826982011-11-09 01:33:42 -0800202 compiler.CompileAll(class_loader->get(), dex_files);
203
jeffhao10037c82012-01-23 15:06:23 -0800204 if (!OatWriter::Create(oat_file, class_loader->get(), dex_files, compiler)) {
Brian Carlstromae826982011-11-09 01:33:42 -0800205 LOG(ERROR) << "Failed to create oat file " << oat_file->name();
206 return false;
207 }
208 return true;
209 }
210
211 bool CreateImageFile(const char* image_filename,
212 uintptr_t image_base,
213 const std::set<std::string>* image_classes,
214 const std::string& oat_filename,
215 const std::string& host_prefix) {
216 // If we have an existing boot image, position new space after its oat file
217 if (Heap::GetSpaces().size() > 1) {
Ian Rogers30fab402012-01-23 15:43:46 -0800218 ImageSpace* last_image_space = NULL;
219 const std::vector<Space*>& spaces = Heap::GetSpaces();
220 for (size_t i=0; i < spaces.size(); i++) {
221 if (spaces[i]->IsImageSpace()) {
222 last_image_space = spaces[i]->AsImageSpace();
223 }
224 }
Brian Carlstromae826982011-11-09 01:33:42 -0800225 CHECK(last_image_space != NULL);
226 CHECK(last_image_space->IsImageSpace());
227 CHECK(!Heap::GetSpaces()[Heap::GetSpaces().size()-1]->IsImageSpace());
Ian Rogers30fab402012-01-23 15:43:46 -0800228 byte* oat_limit_addr = last_image_space->GetImageHeader().GetOatEnd();
Brian Carlstromae826982011-11-09 01:33:42 -0800229 image_base = RoundUp(reinterpret_cast<uintptr_t>(oat_limit_addr), kPageSize);
230 }
231
232 ImageWriter image_writer(image_classes);
233 if (!image_writer.Write(image_filename, image_base, oat_filename, host_prefix)) {
234 LOG(ERROR) << "Failed to create image file " << image_filename;
235 return false;
236 }
237 return true;
238 }
239
240 private:
241
Elliott Hughes5523ee02012-02-03 18:18:34 -0800242 explicit Dex2Oat(Runtime* runtime, size_t thread_count)
243 : runtime_(runtime), thread_count_(thread_count), start_ns_(NanoTime()) {
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800244 }
Brian Carlstromae826982011-11-09 01:33:42 -0800245
246 static Runtime* CreateRuntime(Runtime::Options& options) {
247 Runtime* runtime = Runtime::Create(options, false);
248 if (runtime == NULL) {
249 LOG(ERROR) << "Failed to create runtime";
250 return NULL;
251 }
252
253 // if we loaded an existing image, we will reuse values from the image roots.
254 if (!runtime->HasJniDlsymLookupStub()) {
Elliott Hughes8add92d2012-01-18 18:18:43 -0800255 runtime->SetJniDlsymLookupStub(Compiler::CreateJniDlsymLookupStub(instruction_set_));
Brian Carlstromae826982011-11-09 01:33:42 -0800256 }
257 if (!runtime->HasAbstractMethodErrorStubArray()) {
258 runtime->SetAbstractMethodErrorStubArray(Compiler::CreateAbstractMethodErrorStub(instruction_set_));
259 }
260 for (int i = 0; i < Runtime::kLastTrampolineMethodType; i++) {
261 Runtime::TrampolineType type = Runtime::TrampolineType(i);
262 if (!runtime->HasResolutionStubArray(type)) {
263 runtime->SetResolutionStubArray(Compiler::CreateResolutionStub(instruction_set_, type), type);
264 }
265 }
266 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
267 Runtime::CalleeSaveType type = Runtime::CalleeSaveType(i);
268 if (!runtime->HasCalleeSaveMethod(type)) {
269 runtime->SetCalleeSaveMethod(runtime->CreateCalleeSaveMethod(instruction_set_, type), type);
270 }
271 }
272 return runtime;
273 }
274
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800275 static void ResolveExceptionsForMethod(MethodHelper* mh,
276 std::set<std::pair<uint16_t, const DexFile*> >& exceptions_to_resolve) {
277 const DexFile::CodeItem* code_item = mh->GetCodeItem();
278 if (code_item == NULL) {
279 return; // native or abstract method
280 }
281 if (code_item->tries_size_ == 0) {
282 return; // nothing to process
283 }
284 const byte* encoded_catch_handler_list = DexFile::GetCatchHandlerData(*code_item, 0);
285 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
286 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
287 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
288 bool has_catch_all = false;
289 if (encoded_catch_handler_size <= 0) {
290 encoded_catch_handler_size = -encoded_catch_handler_size;
291 has_catch_all = true;
292 }
293 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
294 uint16_t encoded_catch_handler_handlers_type_idx =
295 DecodeUnsignedLeb128(&encoded_catch_handler_list);
296 // Add to set of types to resolve if not already in the dex cache resolved types
297 if (!mh->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
298 exceptions_to_resolve.insert(
299 std::pair<uint16_t, const DexFile*>(encoded_catch_handler_handlers_type_idx,
300 &mh->GetDexFile()));
301 }
302 // ignore address associated with catch handler
303 DecodeUnsignedLeb128(&encoded_catch_handler_list);
304 }
305 if (has_catch_all) {
306 // ignore catch all address
307 DecodeUnsignedLeb128(&encoded_catch_handler_list);
308 }
309 }
310 }
311 static bool ResolveCatchBlockExceptionsClassVisitor(Class* c, void* arg) {
312 std::set<std::pair<uint16_t, const DexFile*> >* exceptions_to_resolve =
313 reinterpret_cast<std::set<std::pair<uint16_t, const DexFile*> >*>(arg);
314 MethodHelper mh;
315 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
316 Method* m = c->GetVirtualMethod(i);
317 mh.ChangeMethod(m);
318 ResolveExceptionsForMethod(&mh, *exceptions_to_resolve);
319 }
320 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
321 Method* m = c->GetDirectMethod(i);
322 mh.ChangeMethod(m);
323 ResolveExceptionsForMethod(&mh, *exceptions_to_resolve);
324 }
325 return true;
326 }
327 static bool RecordImageClassesVisitor(Class* klass, void* arg) {
Brian Carlstromae826982011-11-09 01:33:42 -0800328 std::set<std::string>* image_classes = reinterpret_cast<std::set<std::string>*>(arg);
329 if (klass->IsArrayClass() || klass->IsPrimitive()) {
Jesse Wilson254db0f2011-11-16 16:44:11 -0500330 return true;
331 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800332 image_classes->insert(ClassHelper(klass).GetDescriptor());
Brian Carlstromae826982011-11-09 01:33:42 -0800333 return true;
Jesse Wilson254db0f2011-11-16 16:44:11 -0500334 }
Jesse Wilson254db0f2011-11-16 16:44:11 -0500335
Brian Carlstromae826982011-11-09 01:33:42 -0800336 // Appends to dex_files any elements of class_path that it doesn't already
337 // contain. This will open those dex files as necessary.
338 static void OpenClassPathFiles(const std::string& class_path, std::vector<const DexFile*>& dex_files) {
339 std::vector<std::string> parsed;
340 Split(class_path, ':', parsed);
341 for (size_t i = 0; i < parsed.size(); ++i) {
342 if (DexFilesContains(dex_files, parsed[i])) {
343 continue;
344 }
345 const DexFile* dex_file = DexFile::Open(parsed[i], Runtime::Current()->GetHostPrefix());
346 if (dex_file == NULL) {
347 LOG(WARNING) << "Failed to open dex file " << parsed[i];
348 } else {
349 dex_files.push_back(dex_file);
350 }
Jesse Wilson254db0f2011-11-16 16:44:11 -0500351 }
352 }
Brian Carlstromae826982011-11-09 01:33:42 -0800353
354 // Returns true if dex_files has a dex with the named location.
355 static bool DexFilesContains(const std::vector<const DexFile*>& dex_files, const std::string& location) {
356 for (size_t i = 0; i < dex_files.size(); ++i) {
357 if (dex_files[i]->GetLocation() == location) {
358 return true;
359 }
360 }
361 return false;
362 }
363
Brian Carlstromae826982011-11-09 01:33:42 -0800364 static const InstructionSet instruction_set_ = kThumb2;
365
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800366 Runtime* runtime_;
Elliott Hughes5523ee02012-02-03 18:18:34 -0800367 size_t thread_count_;
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800368 uint64_t start_ns_;
369
Brian Carlstromae826982011-11-09 01:33:42 -0800370 DISALLOW_IMPLICIT_CONSTRUCTORS(Dex2Oat);
371};
Jesse Wilson254db0f2011-11-16 16:44:11 -0500372
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800373bool ParseInt(const char* in, int* out) {
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800374 char* end;
375 int result = strtol(in, &end, 10);
376 if (in == end || *end != '\0') {
377 return false;
378 }
379 *out = result;
380 return true;
381}
382
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800383void OpenDexFiles(const std::vector<const char*>& dex_filenames,
384 std::vector<const DexFile*>& dex_files,
385 const std::string& strip_location_prefix) {
386 for (size_t i = 0; i < dex_filenames.size(); i++) {
387 const char* dex_filename = dex_filenames[i];
388 const DexFile* dex_file = DexFile::Open(dex_filename, strip_location_prefix);
389 if (dex_file == NULL) {
jeffhao60f83e32012-02-13 17:16:30 -0800390 LOG(WARNING) << "could not open .dex from file " << dex_filename;
391 } else {
392 dex_files.push_back(dex_file);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800393 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800394 }
395}
396
397
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700398int dex2oat(int argc, char** argv) {
399 // Skip over argv[0].
400 argv++;
401 argc--;
402
403 if (argc == 0) {
404 fprintf(stderr, "no arguments specified\n");
405 usage();
406 }
407
408 std::vector<const char*> dex_filenames;
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800409 int zip_fd = -1;
410 std::string zip_name;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700411 std::string oat_filename;
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800412 int oat_fd = -1;
413 std::string oat_name;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700414 const char* image_filename = NULL;
Brian Carlstromae826982011-11-09 01:33:42 -0800415 const char* image_classes_filename = NULL;
Brian Carlstromb0011262011-12-09 12:17:24 -0800416 std::string boot_image_filename;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700417 uintptr_t image_base = 0;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700418 std::string host_prefix;
jeffhao5d840402011-10-24 17:09:45 -0700419 std::vector<const char*> runtime_args;
Elliott Hughes5523ee02012-02-03 18:18:34 -0800420 int thread_count = 2;
Brian Carlstrom16192862011-09-12 17:50:06 -0700421
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700422 for (int i = 0; i < argc; i++) {
423 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800424 bool log_options = false;
425 if (log_options) {
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700426 LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i];
427 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700428 if (option.starts_with("--dex-file=")) {
429 dex_filenames.push_back(option.substr(strlen("--dex-file=")).data());
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800430 } else if (option.starts_with("--zip-fd=")) {
431 const char* zip_fd_str = option.substr(strlen("--zip-fd=")).data();
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800432 if (!ParseInt(zip_fd_str, &zip_fd)) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800433 fprintf(stderr, "could not parse --zip-fd argument '%s' as an integer\n", zip_fd_str);
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800434 usage();
435 }
436 } else if (option.starts_with("--zip-name=")) {
437 zip_name = option.substr(strlen("--zip-name=")).data();
438 } else if (option.starts_with("--oat-file=")) {
439 oat_filename = option.substr(strlen("--oat-file=")).data();
440 } else if (option.starts_with("--oat-fd=")) {
441 const char* oat_fd_str = option.substr(strlen("--oat-fd=")).data();
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800442 if (!ParseInt(oat_fd_str, &oat_fd)) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800443 fprintf(stderr, "could not parse --oat-fd argument '%s' as an integer\n", oat_fd_str);
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800444 usage();
445 }
Elliott Hughes5523ee02012-02-03 18:18:34 -0800446 } else if (option.starts_with("-j")) {
Brian Carlstromb12552a2012-02-04 17:17:31 -0800447 const char* thread_count_str = option.substr(strlen("-j")).data();
Elliott Hughes5523ee02012-02-03 18:18:34 -0800448 if (!ParseInt(thread_count_str, &thread_count)) {
449 fprintf(stderr, "could not parse -j argument '%s' as an integer\n", thread_count_str);
450 usage();
451 }
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800452 } else if (option.starts_with("--oat-name=")) {
453 oat_name = option.substr(strlen("--oat-name=")).data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700454 } else if (option.starts_with("--image=")) {
455 image_filename = option.substr(strlen("--image=")).data();
Brian Carlstromae826982011-11-09 01:33:42 -0800456 } else if (option.starts_with("--image-classes=")) {
457 image_classes_filename = option.substr(strlen("--image-classes=")).data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700458 } else if (option.starts_with("--base=")) {
459 const char* image_base_str = option.substr(strlen("--base=")).data();
460 char* end;
461 image_base = strtoul(image_base_str, &end, 16);
462 if (end == image_base_str || *end != '\0') {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700463 fprintf(stderr, "Failed to parse hexadecimal value for option %s\n", option.data());
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700464 usage();
465 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700466 } else if (option.starts_with("--boot-image=")) {
Brian Carlstromb0011262011-12-09 12:17:24 -0800467 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700468 } else if (option.starts_with("--host-prefix=")) {
469 host_prefix = option.substr(strlen("--host-prefix=")).data();
jeffhao5d840402011-10-24 17:09:45 -0700470 } else if (option == "--runtime-arg") {
471 if (++i >= argc) {
472 fprintf(stderr, "Missing required argument for --runtime-arg\n");
473 usage();
474 }
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800475 if (log_options) {
476 LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i];
477 }
jeffhao5d840402011-10-24 17:09:45 -0700478 runtime_args.push_back(argv[i]);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700479 } else {
480 fprintf(stderr, "unknown argument %s\n", option.data());
481 usage();
482 }
483 }
484
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800485 if (oat_filename.empty() && oat_fd == -1) {
486 fprintf(stderr, "Output must be supplied with either --oat-file or --oat-fd\n");
487 return EXIT_FAILURE;
488 }
489
490 if (!oat_filename.empty() && oat_fd != -1) {
491 fprintf(stderr, "--oat-file should not be used with --oat-fd\n");
492 return EXIT_FAILURE;
493 }
494
495 if (!oat_filename.empty() && oat_fd != -1) {
496 fprintf(stderr, "--oat-file should not be used with --oat-fd\n");
497 return EXIT_FAILURE;
498 }
499
500 if (!oat_filename.empty() && !oat_name.empty()) {
501 fprintf(stderr, "--oat-file should not be used with --oat-name\n");
502 return EXIT_FAILURE;
503 }
504
505 if (oat_fd != -1 && oat_name.empty()) {
506 fprintf(stderr, "--oat-name should be supplied with --oat-fd\n");
507 return EXIT_FAILURE;
508 }
509
510 if (oat_fd != -1 && image_filename != NULL) {
511 fprintf(stderr, "--oat-fd should not be used with --image\n");
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700512 return EXIT_FAILURE;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700513 }
514
Brian Carlstromb0011262011-12-09 12:17:24 -0800515 if (host_prefix.empty()) {
516 const char* android_product_out = getenv("ANDROID_PRODUCT_OUT");
517 if (android_product_out != NULL) {
518 host_prefix = android_product_out;
519 }
520 }
521
Brian Carlstromae826982011-11-09 01:33:42 -0800522 bool image = (image_filename != NULL);
Brian Carlstromb0011262011-12-09 12:17:24 -0800523 if (!image && boot_image_filename.empty()) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800524 if (host_prefix.empty()) {
525 boot_image_filename += GetAndroidRoot();
526 } else {
527 boot_image_filename += host_prefix;
528 boot_image_filename += "/system";
529 }
530 boot_image_filename += "/framework/boot.art";
Brian Carlstromb0011262011-12-09 12:17:24 -0800531 }
532 std::string boot_image_option;
533 if (boot_image_filename != NULL) {
534 boot_image_option += "-Ximage:";
535 boot_image_option += boot_image_filename;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700536 }
537
Brian Carlstromae826982011-11-09 01:33:42 -0800538 if (image_classes_filename != NULL && !image) {
539 fprintf(stderr, "--image-classes should only be used with --image\n");
540 return EXIT_FAILURE;
541 }
542
543 if (image_classes_filename != NULL && !boot_image_option.empty()) {
544 fprintf(stderr, "--image-classes should not be used with --boot-image\n");
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700545 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700546 }
547
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800548 if (dex_filenames.empty() && zip_fd == -1) {
549 fprintf(stderr, "Input must be supplied with either --dex-file or --zip-fd\n");
550 return EXIT_FAILURE;
551 }
552
553 if (!dex_filenames.empty() && zip_fd != -1) {
554 fprintf(stderr, "--dex-file should not be used with --zip-fd\n");
555 return EXIT_FAILURE;
556 }
557
558 if (!dex_filenames.empty() && !zip_name.empty()) {
559 fprintf(stderr, "--dex-file should not be used with --zip-name\n");
560 return EXIT_FAILURE;
561 }
562
563 if (zip_fd != -1 && zip_name.empty()) {
564 fprintf(stderr, "--zip-name should be supplied with --zip-fd\n");
565 return EXIT_FAILURE;
566 }
567
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700568 if (boot_image_option.empty()) {
569 if (image_base == 0) {
570 fprintf(stderr, "non-zero --base not specified\n");
571 return EXIT_FAILURE;
572 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700573 }
574
Brian Carlstrom6ef827a2011-12-11 14:57:47 -0800575 // Check early that the result of compilation can be written
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800576 UniquePtr<File> oat_file;
577 if (!oat_filename.empty()) {
578 oat_file.reset(OS::OpenFile(oat_filename.c_str(), true));
579 oat_name = oat_filename;
580 } else {
581 oat_file.reset(OS::FileFromFd(oat_name.c_str(), oat_fd));
582 }
Brian Carlstrom6ef827a2011-12-11 14:57:47 -0800583 if (oat_file.get() == NULL) {
Elliott Hughesfd8cba42012-01-11 14:34:28 -0800584 PLOG(ERROR) << "Unable to create oat file: " << oat_name;
Brian Carlstrom6ef827a2011-12-11 14:57:47 -0800585 return EXIT_FAILURE;
Ian Rogers5e863dd2011-11-02 20:00:10 -0700586 }
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800587
588 LOG(INFO) << "dex2oat: " << oat_name;
Ian Rogers5e863dd2011-11-02 20:00:10 -0700589
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700590 Runtime::Options options;
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700591 options.push_back(std::make_pair("compiler", reinterpret_cast<void*>(NULL)));
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700592 std::string boot_class_path_string;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700593 if (boot_image_option.empty()) {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700594 boot_class_path_string += "-Xbootclasspath:";
595 for (size_t i = 0; i < dex_filenames.size()-1; i++) {
596 boot_class_path_string += dex_filenames[i];
597 boot_class_path_string += ":";
598 }
599 boot_class_path_string += dex_filenames[dex_filenames.size()-1];
600 options.push_back(std::make_pair(boot_class_path_string.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700601 } else {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700602 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
603 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700604 if (!host_prefix.empty()) {
605 options.push_back(std::make_pair("host-prefix", host_prefix.c_str()));
606 }
jeffhao5d840402011-10-24 17:09:45 -0700607 for (size_t i = 0; i < runtime_args.size(); i++) {
608 options.push_back(std::make_pair(runtime_args[i], reinterpret_cast<void*>(NULL)));
609 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700610
Elliott Hughes5523ee02012-02-03 18:18:34 -0800611 UniquePtr<Dex2Oat> dex2oat(Dex2Oat::Create(options, thread_count));
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700612
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800613 // If --image-classes was specified, calculate the full list of classes to include in the image
Brian Carlstromae826982011-11-09 01:33:42 -0800614 UniquePtr<const std::set<std::string> > image_classes(NULL);
615 if (image_classes_filename != NULL) {
616 image_classes.reset(dex2oat->GetImageClassDescriptors(image_classes_filename));
617 if (image_classes.get() == NULL) {
618 LOG(ERROR) << "Failed to create list of image classes from " << image_classes_filename;
619 return EXIT_FAILURE;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700620 }
621 }
622
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800623 std::vector<const DexFile*> dex_files;
624 if (boot_image_option.empty()) {
625 dex_files = Runtime::Current()->GetClassLinker()->GetBootClassPath();
626 } else {
627 if (dex_filenames.empty()) {
628 UniquePtr<ZipArchive> zip_archive(ZipArchive::OpenFromFd(zip_fd));
629 if (zip_archive.get() == NULL) {
630 LOG(ERROR) << "Failed to zip from file descriptor for " << zip_name;
Brian Carlstrom2e3d1b22012-01-09 18:01:56 -0800631 return EXIT_FAILURE;
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800632 }
633 const DexFile* dex_file = DexFile::Open(*zip_archive.get(), zip_name);
634 if (dex_file == NULL) {
Elliott Hughesfd8cba42012-01-11 14:34:28 -0800635 LOG(ERROR) << "Failed to open dex from file descriptor for zip file: " << zip_name;
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800636 return EXIT_FAILURE;
637 }
638 dex_files.push_back(dex_file);
639 } else {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800640 OpenDexFiles(dex_filenames, dex_files, host_prefix);
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800641 }
642 }
643
Brian Carlstromae826982011-11-09 01:33:42 -0800644 if (!dex2oat->CreateOatFile(boot_image_option,
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800645 dex_files,
Brian Carlstromae826982011-11-09 01:33:42 -0800646 oat_file.get(),
647 image,
648 image_classes.get())) {
Elliott Hughesfd8cba42012-01-11 14:34:28 -0800649 LOG(ERROR) << "Failed to create oat file: " << oat_name;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700650 return EXIT_FAILURE;
651 }
652
Brian Carlstromae826982011-11-09 01:33:42 -0800653 if (!image) {
Elliott Hughesfd8cba42012-01-11 14:34:28 -0800654 LOG(INFO) << "Oat file written successfully: " << oat_name;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700655 return EXIT_SUCCESS;
656 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700657
Brian Carlstromae826982011-11-09 01:33:42 -0800658 if (!dex2oat->CreateImageFile(image_filename,
659 image_base,
660 image_classes.get(),
661 oat_filename,
662 host_prefix)) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700663 return EXIT_FAILURE;
664 }
665
Brian Carlstromae826982011-11-09 01:33:42 -0800666 // We wrote the oat file successfully, and want to keep it.
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800667 LOG(INFO) << "Oat file written successfully: " << oat_filename;
668 LOG(INFO) << "Image written successfully: " << image_filename;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700669 return EXIT_SUCCESS;
670}
671
672} // namespace art
673
674int main(int argc, char** argv) {
675 return art::dex2oat(argc, argv);
676}