blob: 70b2a6ba71b20f03f9149d61e6411ff635c029de [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>
Brian Carlstrom6cd40e52012-05-03 14:15:11 -070019#include <sys/stat.h>
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070020
Brian Carlstromae826982011-11-09 01:33:42 -080021#include <iostream>
22#include <fstream>
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070023#include <string>
24#include <vector>
25
Elliott Hughes1aa246d2012-12-13 09:29:36 -080026#include "base/stl_util.h"
Elliott Hughes76160052012-12-12 16:31:20 -080027#include "base/unix_file/fd_file.h"
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070028#include "class_linker.h"
29#include "class_loader.h"
30#include "compiler.h"
31#include "image_writer.h"
Ian Rogers6f1dfe42011-12-08 17:28:34 -080032#include "leb128.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070033#include "oat_writer.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080034#include "object_utils.h"
Ian Rogers5e863dd2011-11-02 20:00:10 -070035#include "os.h"
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070036#include "runtime.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070037#include "ScopedLocalRef.h"
38#include "scoped_thread_state_change.h"
Ian Rogers1f539342012-10-03 21:09:42 -070039#include "sirt_ref.h"
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070040#include "stringpiece.h"
Elliott Hughesbb551fa2012-01-25 16:35:29 -080041#include "timing_logger.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070042#include "well_known_classes.h"
Brian Carlstroma6cc8932012-01-04 14:44:07 -080043#include "zip_archive.h"
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070044
45namespace art {
46
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -080047static void UsageErrorV(const char* fmt, va_list ap) {
48 std::string error;
49 StringAppendV(&error, fmt, ap);
50 LOG(ERROR) << error;
51}
52
53static void UsageError(const char* fmt, ...) {
54 va_list ap;
55 va_start(ap, fmt);
56 UsageErrorV(fmt, ap);
57 va_end(ap);
58}
59
60static void Usage(const char* fmt, ...) {
61 va_list ap;
62 va_start(ap, fmt);
63 UsageErrorV(fmt, ap);
64 va_end(ap);
65
66 UsageError("Usage: dex2oat [options]...");
67 UsageError("");
68 UsageError(" --dex-file=<dex-file>: specifies a .dex file to compile.");
69 UsageError(" Example: --dex-file=/system/framework/core.jar");
70 UsageError("");
71 UsageError(" --zip-fd=<file-descriptor>: specifies a file descriptor of a zip file");
72 UsageError(" containing a classes.dex file to compile.");
73 UsageError(" Example: --zip-fd=5");
74 UsageError("");
75 UsageError(" --zip-location=<zip-location>: specifies a symbolic name for the file corresponding");
76 UsageError(" to the file descriptor specified by --zip-fd.");
77 UsageError(" Example: --zip-location=/system/app/Calculator.apk");
78 UsageError("");
79 UsageError(" --oat-file=<file.oat>: specifies the required oat filename.");
80 UsageError(" Example: --oat-file=/system/framework/boot.oat");
81 UsageError("");
82 UsageError(" --oat-location=<oat-name>: specifies a symbolic name for the file corresponding");
83 UsageError(" to the file descriptor specified by --oat-fd.");
84 UsageError(" Example: --oat-location=/data/art-cache/system@app@Calculator.apk.oat");
85 UsageError("");
Logan Chien8b977d32012-02-21 19:14:55 +080086 UsageError(" --bitcode=<file.bc>: specifies the optional bitcode filename.");
87 UsageError(" Example: --bitcode=/system/framework/boot.bc");
88 UsageError("");
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -080089 UsageError(" --image=<file.art>: specifies the output image filename.");
90 UsageError(" Example: --image=/system/framework/boot.art");
91 UsageError("");
92 UsageError(" --image-classes=<classname-file>: specifies classes to include in an image.");
93 UsageError(" Example: --image=frameworks/base/preloaded-classes");
94 UsageError("");
95 UsageError(" --base=<hex-address>: specifies the base address when creating a boot image.");
96 UsageError(" Example: --base=0x50000000");
97 UsageError("");
98 UsageError(" --boot-image=<file.art>: provide the image file for the boot class path.");
99 UsageError(" Example: --boot-image=/system/framework/boot.art");
100 UsageError(" Default: <host-prefix>/system/framework/boot.art");
101 UsageError("");
102 UsageError(" --host-prefix may be used to translate host paths to target paths during");
103 UsageError(" cross compilation.");
104 UsageError(" Example: --host-prefix=out/target/product/crespo");
105 UsageError(" Default: $ANDROID_PRODUCT_OUT");
106 UsageError("");
jeffhao1f71ae82012-05-24 16:08:24 -0700107 UsageError(" --instruction-set=(arm|mips|x86): compile for a particular instruction");
Ian Rogers49c48942012-03-11 15:15:37 -0700108 UsageError(" set.");
jeffhao1f71ae82012-05-24 16:08:24 -0700109 UsageError(" Example: --instruction-set=x86");
110 UsageError(" Default: arm");
Ian Rogers49c48942012-03-11 15:15:37 -0700111 UsageError("");
buzbeec531cef2012-10-18 07:09:20 -0700112 UsageError(" --compiler-backend=(Quick|QuickGBC|Portable): select compiler backend");
113 UsageError(" set.");
114 UsageError(" Example: --instruction-set=Portable");
115 UsageError(" Default: Quick");
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800116 UsageError(" --runtime-arg <argument>: used to specify various arguments for the runtime,");
117 UsageError(" such as initial heap size, maximum heap size, and verbose output.");
118 UsageError(" Use a separate --runtime-arg switch for each argument.");
119 UsageError(" Example: --runtime-arg -Xms256m");
120 UsageError("");
121 std::cerr << "See log for usage error information\n";
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700122 exit(EXIT_FAILURE);
123}
124
Brian Carlstromae826982011-11-09 01:33:42 -0800125class Dex2Oat {
126 public:
buzbeec531cef2012-10-18 07:09:20 -0700127 static bool Create(Dex2Oat** p_dex2oat, Runtime::Options& options, CompilerBackend compiler_backend,
128 InstructionSet instruction_set, size_t thread_count, bool support_debugging)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700129 SHARED_TRYLOCK_FUNCTION(true, Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700130 if (!CreateRuntime(options, instruction_set)) {
131 *p_dex2oat = NULL;
132 return false;
Brian Carlstromae826982011-11-09 01:33:42 -0800133 }
buzbeec531cef2012-10-18 07:09:20 -0700134 *p_dex2oat = new Dex2Oat(Runtime::Current(), compiler_backend, instruction_set, thread_count,
135 support_debugging);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700136 return true;
Brian Carlstromae826982011-11-09 01:33:42 -0800137 }
138
139 ~Dex2Oat() {
140 delete runtime_;
Elliott Hughes5523ee02012-02-03 18:18:34 -0800141 LOG(INFO) << "dex2oat took " << PrettyDuration(NanoTime() - start_ns_) << " (threads: " << thread_count_ << ")";
Brian Carlstromae826982011-11-09 01:33:42 -0800142 }
143
144 // Make a list of descriptors for classes to include in the image
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700145 const std::set<std::string>* GetImageClassDescriptors(const char* image_classes_filename)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700146 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromae826982011-11-09 01:33:42 -0800147 UniquePtr<std::ifstream> image_classes_file(new std::ifstream(image_classes_filename, std::ifstream::in));
148 if (image_classes_file.get() == NULL) {
149 LOG(ERROR) << "Failed to open image classes file " << image_classes_filename;
150 return NULL;
151 }
152
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800153 // Load all the classes specified in the file
Brian Carlstromae826982011-11-09 01:33:42 -0800154 ClassLinker* class_linker = runtime_->GetClassLinker();
Ian Rogers1f539342012-10-03 21:09:42 -0700155 Thread* self = Thread::Current();
Brian Carlstromae826982011-11-09 01:33:42 -0800156 while (image_classes_file->good()) {
157 std::string dot;
158 std::getline(*image_classes_file.get(), dot);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800159 if (StartsWith(dot, "#") || dot.empty()) {
Brian Carlstromae826982011-11-09 01:33:42 -0800160 continue;
161 }
Elliott Hughes95572412011-12-13 18:14:20 -0800162 std::string descriptor(DotToDescriptor(dot.c_str()));
Ian Rogers1f539342012-10-03 21:09:42 -0700163 SirtRef<Class> klass(self, class_linker->FindSystemClass(descriptor.c_str()));
Brian Carlstromae826982011-11-09 01:33:42 -0800164 if (klass.get() == NULL) {
165 LOG(WARNING) << "Failed to find class " << descriptor;
166 Thread::Current()->ClearException();
167 }
168 }
169 image_classes_file->close();
170
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800171 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
172 // exceptions are resolved by the verifier when there is a catch block in an interested method.
173 // Do this here so that exception classes appear to have been specified image classes.
174 std::set<std::pair<uint16_t, const DexFile*> > unresolved_exception_types;
Ian Rogers1f539342012-10-03 21:09:42 -0700175 SirtRef<Class> java_lang_Throwable(self,
176 class_linker->FindSystemClass("Ljava/lang/Throwable;"));
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800177 do {
178 unresolved_exception_types.clear();
179 class_linker->VisitClasses(ResolveCatchBlockExceptionsClassVisitor,
180 &unresolved_exception_types);
181 typedef std::set<std::pair<uint16_t, const DexFile*> >::const_iterator It; // TODO: C++0x auto
182 for (It it = unresolved_exception_types.begin(),
183 end = unresolved_exception_types.end();
184 it != end; ++it) {
185 uint16_t exception_type_idx = it->first;
186 const DexFile* dex_file = it->second;
187 DexCache* dex_cache = class_linker->FindDexCache(*dex_file);
188 ClassLoader* class_loader = NULL;
Ian Rogers1f539342012-10-03 21:09:42 -0700189 SirtRef<Class> klass(self, class_linker->ResolveType(*dex_file, exception_type_idx,
190 dex_cache, class_loader));
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800191 if (klass.get() == NULL) {
192 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
193 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
194 LOG(FATAL) << "Failed to resolve class " << descriptor;
195 }
Elliott Hughes35be9b12012-05-29 17:59:26 -0700196 DCHECK(java_lang_Throwable->IsAssignableFrom(klass.get()));
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800197 }
198 // Resolving exceptions may load classes that reference more exceptions, iterate until no
199 // more are found
200 } while (!unresolved_exception_types.empty());
201
Brian Carlstromae826982011-11-09 01:33:42 -0800202 // We walk the roots looking for classes so that we'll pick up the
203 // above classes plus any classes them depend on such super
204 // classes, interfaces, and the required ClassLinker roots.
205 UniquePtr<std::set<std::string> > image_classes(new std::set<std::string>());
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800206 class_linker->VisitClasses(RecordImageClassesVisitor, image_classes.get());
Brian Carlstromae826982011-11-09 01:33:42 -0800207 CHECK_NE(image_classes->size(), 0U);
208 return image_classes.release();
209 }
210
Brian Carlstromf5822582012-03-19 22:34:31 -0700211 const Compiler* CreateOatFile(const std::string& boot_image_option,
Brian Carlstrom34f1fa42012-04-05 18:28:12 -0700212 const std::string* host_prefix,
Brian Carlstromf5822582012-03-19 22:34:31 -0700213 const std::vector<const DexFile*>& dex_files,
214 File* oat_file,
Logan Chiende08e842012-03-21 00:34:12 +0800215 const std::string& bitcode_filename,
Brian Carlstromf5822582012-03-19 22:34:31 -0700216 bool image,
Brian Carlstromba0668e2012-03-26 13:14:07 -0700217 const std::set<std::string>* image_classes,
218 bool dump_stats,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700219 bool dump_timings)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700220 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromae826982011-11-09 01:33:42 -0800221 // SirtRef and ClassLoader creation needs to come after Runtime::Create
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700222 jobject class_loader = NULL;
Brian Carlstromae826982011-11-09 01:33:42 -0800223 if (!boot_image_option.empty()) {
224 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstromae826982011-11-09 01:33:42 -0800225 std::vector<const DexFile*> class_path_files(dex_files);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800226 OpenClassPathFiles(runtime_->GetClassPathString(), class_path_files);
Brian Carlstromae826982011-11-09 01:33:42 -0800227 for (size_t i = 0; i < class_path_files.size(); i++) {
228 class_linker->RegisterDexFile(*class_path_files[i]);
229 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700230 ScopedObjectAccessUnchecked soa(Thread::Current());
231 soa.Env()->AllocObject(WellKnownClasses::dalvik_system_PathClassLoader);
232 ScopedLocalRef<jobject> class_loader_local(soa.Env(),
233 soa.Env()->AllocObject(WellKnownClasses::dalvik_system_PathClassLoader));
234 class_loader = soa.Env()->NewGlobalRef(class_loader_local.get());
235 Runtime::Current()->SetCompileTimeClassPath(class_loader, class_path_files);
Brian Carlstromae826982011-11-09 01:33:42 -0800236 }
237
buzbeec531cef2012-10-18 07:09:20 -0700238 UniquePtr<Compiler> compiler(new Compiler(compiler_backend_,
239 instruction_set_,
Brian Carlstromf5822582012-03-19 22:34:31 -0700240 image,
241 thread_count_,
242 support_debugging_,
Brian Carlstromba0668e2012-03-26 13:14:07 -0700243 image_classes,
244 dump_stats,
245 dump_timings));
Logan Chien8b977d32012-02-21 19:14:55 +0800246
buzbeec531cef2012-10-18 07:09:20 -0700247 if ((compiler_backend_ == kPortable) || (compiler_backend_ == kIceland)) {
248 compiler->SetBitcodeFileName(bitcode_filename);
249 }
Logan Chien8b977d32012-02-21 19:14:55 +0800250
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700251 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
252
253 compiler->CompileAll(class_loader, dex_files);
254
255 Thread::Current()->TransitionFromSuspendedToRunnable();
Brian Carlstromae826982011-11-09 01:33:42 -0800256
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700257 std::string image_file_location;
Brian Carlstrom28db0122012-10-18 16:20:41 -0700258 uint32_t image_file_location_oat_checksum = 0;
259 uint32_t image_file_location_oat_begin = 0;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700260 Heap* heap = Runtime::Current()->GetHeap();
261 if (heap->GetSpaces().size() > 1) {
262 ImageSpace* image_space = heap->GetImageSpace();
Brian Carlstrom28db0122012-10-18 16:20:41 -0700263 image_file_location_oat_checksum = image_space->GetImageHeader().GetOatChecksum();
264 image_file_location_oat_begin = reinterpret_cast<uint32_t>(image_space->GetImageHeader().GetOatBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700265 image_file_location = image_space->GetImageFilename();
Brian Carlstrom34f1fa42012-04-05 18:28:12 -0700266 if (host_prefix != NULL && StartsWith(image_file_location, host_prefix->c_str())) {
267 image_file_location = image_file_location.substr(host_prefix->size());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700268 }
269 }
270
271 if (!OatWriter::Create(oat_file,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700272 dex_files,
Brian Carlstrom28db0122012-10-18 16:20:41 -0700273 image_file_location_oat_checksum,
274 image_file_location_oat_begin,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700275 image_file_location,
Brian Carlstromf5822582012-03-19 22:34:31 -0700276 *compiler.get())) {
Elliott Hughes76160052012-12-12 16:31:20 -0800277 LOG(ERROR) << "Failed to create oat file " << oat_file->GetPath();
Brian Carlstromf5822582012-03-19 22:34:31 -0700278 return NULL;
Brian Carlstromae826982011-11-09 01:33:42 -0800279 }
Brian Carlstromf5822582012-03-19 22:34:31 -0700280 return compiler.release();
Brian Carlstromae826982011-11-09 01:33:42 -0800281 }
282
Brian Carlstroma004aa92012-02-08 18:05:09 -0800283 bool CreateImageFile(const std::string& image_filename,
Brian Carlstromae826982011-11-09 01:33:42 -0800284 uintptr_t image_base,
285 const std::set<std::string>* image_classes,
286 const std::string& oat_filename,
Brian Carlstromf5822582012-03-19 22:34:31 -0700287 const std::string& oat_location,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700288 const Compiler& compiler)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700289 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Brian Carlstromae826982011-11-09 01:33:42 -0800290 ImageWriter image_writer(image_classes);
Brian Carlstromf5822582012-03-19 22:34:31 -0700291 if (!image_writer.Write(image_filename, image_base, oat_filename, oat_location, compiler)) {
Brian Carlstromae826982011-11-09 01:33:42 -0800292 LOG(ERROR) << "Failed to create image file " << image_filename;
293 return false;
294 }
295 return true;
296 }
297
298 private:
buzbeec531cef2012-10-18 07:09:20 -0700299 explicit Dex2Oat(Runtime* runtime, CompilerBackend compiler_backend, InstructionSet instruction_set,
300 size_t thread_count, bool support_debugging)
301 : compiler_backend_(compiler_backend),
302 instruction_set_(instruction_set),
Ian Rogers49c48942012-03-11 15:15:37 -0700303 runtime_(runtime),
Elliott Hughesde6e4cf2012-02-27 14:46:06 -0800304 thread_count_(thread_count),
305 support_debugging_(support_debugging),
306 start_ns_(NanoTime()) {
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800307 }
Brian Carlstromae826982011-11-09 01:33:42 -0800308
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700309 static bool CreateRuntime(Runtime::Options& options, InstructionSet instruction_set)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700310 SHARED_TRYLOCK_FUNCTION(true, Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700311 if (!Runtime::Create(options, false)) {
Brian Carlstromae826982011-11-09 01:33:42 -0800312 LOG(ERROR) << "Failed to create runtime";
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700313 return false;
Brian Carlstromae826982011-11-09 01:33:42 -0800314 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700315 Runtime* runtime = Runtime::Current();
Brian Carlstromae826982011-11-09 01:33:42 -0800316 // if we loaded an existing image, we will reuse values from the image roots.
317 if (!runtime->HasJniDlsymLookupStub()) {
Ian Rogers49c48942012-03-11 15:15:37 -0700318 runtime->SetJniDlsymLookupStub(Compiler::CreateJniDlsymLookupStub(instruction_set));
Brian Carlstromae826982011-11-09 01:33:42 -0800319 }
320 if (!runtime->HasAbstractMethodErrorStubArray()) {
Ian Rogers49c48942012-03-11 15:15:37 -0700321 runtime->SetAbstractMethodErrorStubArray(Compiler::CreateAbstractMethodErrorStub(instruction_set));
Brian Carlstromae826982011-11-09 01:33:42 -0800322 }
323 for (int i = 0; i < Runtime::kLastTrampolineMethodType; i++) {
324 Runtime::TrampolineType type = Runtime::TrampolineType(i);
325 if (!runtime->HasResolutionStubArray(type)) {
Ian Rogers49c48942012-03-11 15:15:37 -0700326 runtime->SetResolutionStubArray(Compiler::CreateResolutionStub(instruction_set, type), type);
Brian Carlstromae826982011-11-09 01:33:42 -0800327 }
328 }
Ian Rogers19846512012-02-24 11:42:47 -0800329 if (!runtime->HasResolutionMethod()) {
330 runtime->SetResolutionMethod(runtime->CreateResolutionMethod());
331 }
Brian Carlstromae826982011-11-09 01:33:42 -0800332 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
333 Runtime::CalleeSaveType type = Runtime::CalleeSaveType(i);
334 if (!runtime->HasCalleeSaveMethod(type)) {
Ian Rogers49c48942012-03-11 15:15:37 -0700335 runtime->SetCalleeSaveMethod(runtime->CreateCalleeSaveMethod(instruction_set, type), type);
Brian Carlstromae826982011-11-09 01:33:42 -0800336 }
337 }
Ian Rogers19846512012-02-24 11:42:47 -0800338 runtime->GetClassLinker()->FixupDexCaches(runtime->GetResolutionMethod());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700339 return true;
Brian Carlstromae826982011-11-09 01:33:42 -0800340 }
341
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800342 static void ResolveExceptionsForMethod(MethodHelper* mh,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700343 std::set<std::pair<uint16_t, const DexFile*> >& exceptions_to_resolve)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700344 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800345 const DexFile::CodeItem* code_item = mh->GetCodeItem();
346 if (code_item == NULL) {
347 return; // native or abstract method
348 }
349 if (code_item->tries_size_ == 0) {
350 return; // nothing to process
351 }
352 const byte* encoded_catch_handler_list = DexFile::GetCatchHandlerData(*code_item, 0);
353 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
354 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
355 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
356 bool has_catch_all = false;
357 if (encoded_catch_handler_size <= 0) {
358 encoded_catch_handler_size = -encoded_catch_handler_size;
359 has_catch_all = true;
360 }
361 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
362 uint16_t encoded_catch_handler_handlers_type_idx =
363 DecodeUnsignedLeb128(&encoded_catch_handler_list);
364 // Add to set of types to resolve if not already in the dex cache resolved types
365 if (!mh->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
366 exceptions_to_resolve.insert(
367 std::pair<uint16_t, const DexFile*>(encoded_catch_handler_handlers_type_idx,
368 &mh->GetDexFile()));
369 }
370 // ignore address associated with catch handler
371 DecodeUnsignedLeb128(&encoded_catch_handler_list);
372 }
373 if (has_catch_all) {
374 // ignore catch all address
375 DecodeUnsignedLeb128(&encoded_catch_handler_list);
376 }
377 }
378 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700379
380 static bool ResolveCatchBlockExceptionsClassVisitor(Class* c, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700381 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800382 std::set<std::pair<uint16_t, const DexFile*> >* exceptions_to_resolve =
383 reinterpret_cast<std::set<std::pair<uint16_t, const DexFile*> >*>(arg);
384 MethodHelper mh;
385 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
Mathieu Chartier66f19252012-09-18 08:57:04 -0700386 AbstractMethod* m = c->GetVirtualMethod(i);
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800387 mh.ChangeMethod(m);
388 ResolveExceptionsForMethod(&mh, *exceptions_to_resolve);
389 }
390 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
Mathieu Chartier66f19252012-09-18 08:57:04 -0700391 AbstractMethod* m = c->GetDirectMethod(i);
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800392 mh.ChangeMethod(m);
393 ResolveExceptionsForMethod(&mh, *exceptions_to_resolve);
394 }
395 return true;
396 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700397
398 static bool RecordImageClassesVisitor(Class* klass, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700399 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromae826982011-11-09 01:33:42 -0800400 std::set<std::string>* image_classes = reinterpret_cast<std::set<std::string>*>(arg);
401 if (klass->IsArrayClass() || klass->IsPrimitive()) {
Jesse Wilson254db0f2011-11-16 16:44:11 -0500402 return true;
403 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800404 image_classes->insert(ClassHelper(klass).GetDescriptor());
Brian Carlstromae826982011-11-09 01:33:42 -0800405 return true;
Jesse Wilson254db0f2011-11-16 16:44:11 -0500406 }
Jesse Wilson254db0f2011-11-16 16:44:11 -0500407
Brian Carlstromae826982011-11-09 01:33:42 -0800408 // Appends to dex_files any elements of class_path that it doesn't already
409 // contain. This will open those dex files as necessary.
410 static void OpenClassPathFiles(const std::string& class_path, std::vector<const DexFile*>& dex_files) {
411 std::vector<std::string> parsed;
412 Split(class_path, ':', parsed);
413 for (size_t i = 0; i < parsed.size(); ++i) {
414 if (DexFilesContains(dex_files, parsed[i])) {
415 continue;
416 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800417 const DexFile* dex_file = DexFile::Open(parsed[i], parsed[i]);
Brian Carlstromae826982011-11-09 01:33:42 -0800418 if (dex_file == NULL) {
419 LOG(WARNING) << "Failed to open dex file " << parsed[i];
420 } else {
421 dex_files.push_back(dex_file);
422 }
Jesse Wilson254db0f2011-11-16 16:44:11 -0500423 }
424 }
Brian Carlstromae826982011-11-09 01:33:42 -0800425
426 // Returns true if dex_files has a dex with the named location.
427 static bool DexFilesContains(const std::vector<const DexFile*>& dex_files, const std::string& location) {
428 for (size_t i = 0; i < dex_files.size(); ++i) {
429 if (dex_files[i]->GetLocation() == location) {
430 return true;
431 }
432 }
433 return false;
434 }
435
buzbeec531cef2012-10-18 07:09:20 -0700436 const CompilerBackend compiler_backend_;
437
Ian Rogers49c48942012-03-11 15:15:37 -0700438 const InstructionSet instruction_set_;
Brian Carlstromae826982011-11-09 01:33:42 -0800439
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800440 Runtime* runtime_;
Elliott Hughes5523ee02012-02-03 18:18:34 -0800441 size_t thread_count_;
Elliott Hughesde6e4cf2012-02-27 14:46:06 -0800442 bool support_debugging_;
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800443 uint64_t start_ns_;
444
Brian Carlstromae826982011-11-09 01:33:42 -0800445 DISALLOW_IMPLICIT_CONSTRUCTORS(Dex2Oat);
446};
Jesse Wilson254db0f2011-11-16 16:44:11 -0500447
Elliott Hughes72395bf2012-04-24 13:45:26 -0700448static bool ParseInt(const char* in, int* out) {
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800449 char* end;
450 int result = strtol(in, &end, 10);
451 if (in == end || *end != '\0') {
452 return false;
453 }
454 *out = result;
455 return true;
456}
457
Elliott Hughesbf1b4572012-05-24 19:11:39 -0700458static size_t OpenDexFiles(const std::vector<const char*>& dex_filenames,
459 const std::vector<const char*>& dex_locations,
460 std::vector<const DexFile*>& dex_files) {
461 size_t failure_count = 0;
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800462 for (size_t i = 0; i < dex_filenames.size(); i++) {
463 const char* dex_filename = dex_filenames[i];
Brian Carlstroma004aa92012-02-08 18:05:09 -0800464 const char* dex_location = dex_locations[i];
465 const DexFile* dex_file = DexFile::Open(dex_filename, dex_location);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800466 if (dex_file == NULL) {
jeffhao60f83e32012-02-13 17:16:30 -0800467 LOG(WARNING) << "could not open .dex from file " << dex_filename;
Elliott Hughesbf1b4572012-05-24 19:11:39 -0700468 ++failure_count;
jeffhao60f83e32012-02-13 17:16:30 -0800469 } else {
470 dex_files.push_back(dex_file);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800471 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800472 }
Elliott Hughesbf1b4572012-05-24 19:11:39 -0700473 return failure_count;
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800474}
475
Brian Carlstrombcc29262012-11-02 11:36:03 -0700476// The primary goal of the watchdog is to prevent stuck build servers
477// during development when fatal aborts lead to a cascade of failures
478// that result in a deadlock.
479class WatchDog {
480
481// WatchDog defines its own CHECK_PTHREAD_CALL to avoid using Log which uses locks
482#undef CHECK_PTHREAD_CALL
483#define CHECK_WATCH_DOG_PTHREAD_CALL(call, args, what) \
484 do { \
485 int rc = call args; \
486 if (rc != 0) { \
487 errno = rc; \
488 std::string message(# call); \
489 message += " failed for "; \
490 message += reason; \
491 Die(message); \
492 } \
493 } while (false)
494
495 public:
Brian Carlstrom994d62a2012-11-05 20:43:45 -0800496 WatchDog(bool is_watch_dog_enabled) {
497 is_watch_dog_enabled_ = is_watch_dog_enabled;
498 if (!is_watch_dog_enabled_) {
Brian Carlstrombcc29262012-11-02 11:36:03 -0700499 return;
500 }
501 shutting_down_ = false;
502 const char* reason = "dex2oat watch dog thread startup";
503 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_init, (&mutex_, NULL), reason);
504 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_init, (&cond_, NULL), reason);
505 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_init, (&attr_), reason);
506 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason);
507 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_destroy, (&attr_), reason);
508 }
509 ~WatchDog() {
Brian Carlstrom994d62a2012-11-05 20:43:45 -0800510 if (!is_watch_dog_enabled_) {
Brian Carlstrombcc29262012-11-02 11:36:03 -0700511 return;
512 }
513 const char* reason = "dex2oat watch dog thread shutdown";
514 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason);
515 shutting_down_ = true;
516 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_signal, (&cond_), reason);
517 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_unlock, (&mutex_), reason);
518
519 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_join, (pthread_, NULL), reason);
520
521 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_destroy, (&cond_), reason);
522 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_destroy, (&mutex_), reason);
523 }
524
525 private:
526 static void* CallBack(void* arg) {
527 WatchDog* self = reinterpret_cast<WatchDog*>(arg);
528 self->Wait();
529 return NULL;
530 }
531
532 static void Die(const std::string& message) {
533 // TODO: Switch to LOG(FATAL) when we can guarantee it won't prevent shutdown in error cases
534 fprintf(stderr, "%s\n", message.c_str());
535 exit(1);
536 }
537
538 void Wait() {
539 int64_t ms = kWatchDogTimeoutSeconds * 1000;
540 int32_t ns = 0;
541 timespec ts;
542 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
543 const char* reason = "dex2oat watch dog thread waiting";
544 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason);
545 while (!shutting_down_) {
546 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_, &ts));
547 if (rc == ETIMEDOUT) {
548 std::string message(StringPrintf("dex2oat did not finish after %d seconds",
549 kWatchDogTimeoutSeconds));
550 Die(message.c_str());
551 }
552 if (rc != 0) {
553 std::string message(StringPrintf("pthread_cond_timedwait failed: %s",
554 strerror(errno)));
555 Die(message.c_str());
556 }
557 }
558 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_unlock, (&mutex_), reason);
559 }
560
Brian Carlstrombcc29262012-11-02 11:36:03 -0700561#ifdef ART_USE_LLVM_COMPILER
562 static const unsigned int kWatchDogTimeoutSeconds = 20 * 60; // 15 minutes + buffer
563#else
564 static const unsigned int kWatchDogTimeoutSeconds = 2 * 60; // 1 minute + buffer
565#endif
566
Brian Carlstrom994d62a2012-11-05 20:43:45 -0800567 bool is_watch_dog_enabled_;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700568 bool shutting_down_;
569 // TODO: Switch to Mutex when we can guarantee it won't prevent shutdown in error cases
570 pthread_mutex_t mutex_;
571 pthread_cond_t cond_;
572 pthread_attr_t attr_;
573 pthread_t pthread_;
574};
575
Elliott Hughes72395bf2012-04-24 13:45:26 -0700576static int dex2oat(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -0700577 InitLogging(argv);
Elliott Hughes72395bf2012-04-24 13:45:26 -0700578
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700579 // Skip over argv[0].
580 argv++;
581 argc--;
582
583 if (argc == 0) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800584 Usage("no arguments specified");
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700585 }
586
587 std::vector<const char*> dex_filenames;
Brian Carlstroma004aa92012-02-08 18:05:09 -0800588 std::vector<const char*> dex_locations;
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800589 int zip_fd = -1;
Brian Carlstroma004aa92012-02-08 18:05:09 -0800590 std::string zip_location;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700591 std::string oat_filename;
Brian Carlstroma004aa92012-02-08 18:05:09 -0800592 std::string oat_location;
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800593 int oat_fd = -1;
Logan Chien8b977d32012-02-21 19:14:55 +0800594 std::string bitcode_filename;
Brian Carlstromae826982011-11-09 01:33:42 -0800595 const char* image_classes_filename = NULL;
Brian Carlstroma004aa92012-02-08 18:05:09 -0800596 std::string image_filename;
Brian Carlstromb0011262011-12-09 12:17:24 -0800597 std::string boot_image_filename;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700598 uintptr_t image_base = 0;
Brian Carlstrom34f1fa42012-04-05 18:28:12 -0700599 UniquePtr<std::string> host_prefix;
jeffhao5d840402011-10-24 17:09:45 -0700600 std::vector<const char*> runtime_args;
Elliott Hughes5c599942012-06-13 16:45:05 -0700601 int thread_count = sysconf(_SC_NPROCESSORS_CONF);
Elliott Hughesde6e4cf2012-02-27 14:46:06 -0800602 bool support_debugging = false;
buzbeec531cef2012-10-18 07:09:20 -0700603#if defined(ART_USE_PORTABLE_COMPILER)
604 CompilerBackend compiler_backend = kPortable;
605#elif defined(ART_USE_LLVM_COMPILER)
606 CompilerBackend compiler_backend = kIceland;
607#else
608 CompilerBackend compiler_backend = kQuick;
609#endif
jeffhao9ad4f222012-05-30 18:51:19 -0700610#if defined(__arm__)
Ian Rogers49c48942012-03-11 15:15:37 -0700611 InstructionSet instruction_set = kThumb2;
jeffhao9ad4f222012-05-30 18:51:19 -0700612#elif defined(__i386__)
613 InstructionSet instruction_set = kX86;
614#elif defined(__mips__)
615 InstructionSet instruction_set = kMips;
616#else
617#error "Unsupported architecture"
618#endif
Elliott Hughes67d92002012-03-26 15:08:51 -0700619 bool dump_stats = kIsDebugBuild;
620 bool dump_timings = kIsDebugBuild;
Brian Carlstrom994d62a2012-11-05 20:43:45 -0800621 bool watch_dog_enabled = !kIsTargetBuild;
Brian Carlstrom16192862011-09-12 17:50:06 -0700622
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700623 for (int i = 0; i < argc; i++) {
624 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800625 bool log_options = false;
626 if (log_options) {
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700627 LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i];
628 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700629 if (option.starts_with("--dex-file=")) {
630 dex_filenames.push_back(option.substr(strlen("--dex-file=")).data());
Brian Carlstroma004aa92012-02-08 18:05:09 -0800631 } else if (option.starts_with("--dex-location=")) {
632 dex_locations.push_back(option.substr(strlen("--dex-location=")).data());
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800633 } else if (option.starts_with("--zip-fd=")) {
634 const char* zip_fd_str = option.substr(strlen("--zip-fd=")).data();
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800635 if (!ParseInt(zip_fd_str, &zip_fd)) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800636 Usage("could not parse --zip-fd argument '%s' as an integer", zip_fd_str);
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800637 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800638 } else if (option.starts_with("--zip-location=")) {
639 zip_location = option.substr(strlen("--zip-location=")).data();
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800640 } else if (option.starts_with("--oat-file=")) {
641 oat_filename = option.substr(strlen("--oat-file=")).data();
642 } else if (option.starts_with("--oat-fd=")) {
643 const char* oat_fd_str = option.substr(strlen("--oat-fd=")).data();
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800644 if (!ParseInt(oat_fd_str, &oat_fd)) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800645 Usage("could not parse --oat-fd argument '%s' as an integer", oat_fd_str);
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800646 }
Brian Carlstrom994d62a2012-11-05 20:43:45 -0800647 } else if (option == "-g") {
Elliott Hughesde6e4cf2012-02-27 14:46:06 -0800648 support_debugging = true;
Brian Carlstrom994d62a2012-11-05 20:43:45 -0800649 } else if (option == "--watch-dog") {
650 watch_dog_enabled = true;
651 } else if (option == "--no-watch-dog") {
652 watch_dog_enabled = false;
Elliott Hughes5523ee02012-02-03 18:18:34 -0800653 } else if (option.starts_with("-j")) {
Brian Carlstromb12552a2012-02-04 17:17:31 -0800654 const char* thread_count_str = option.substr(strlen("-j")).data();
Elliott Hughes5523ee02012-02-03 18:18:34 -0800655 if (!ParseInt(thread_count_str, &thread_count)) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800656 Usage("could not parse -j argument '%s' as an integer", thread_count_str);
Elliott Hughes5523ee02012-02-03 18:18:34 -0800657 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800658 } else if (option.starts_with("--oat-location=")) {
659 oat_location = option.substr(strlen("--oat-location=")).data();
Logan Chien8b977d32012-02-21 19:14:55 +0800660 } else if (option.starts_with("--bitcode=")) {
661 bitcode_filename = option.substr(strlen("--bitcode=")).data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700662 } else if (option.starts_with("--image=")) {
663 image_filename = option.substr(strlen("--image=")).data();
Brian Carlstromae826982011-11-09 01:33:42 -0800664 } else if (option.starts_with("--image-classes=")) {
665 image_classes_filename = option.substr(strlen("--image-classes=")).data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700666 } else if (option.starts_with("--base=")) {
667 const char* image_base_str = option.substr(strlen("--base=")).data();
668 char* end;
669 image_base = strtoul(image_base_str, &end, 16);
670 if (end == image_base_str || *end != '\0') {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800671 Usage("Failed to parse hexadecimal value for option %s", option.data());
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700672 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700673 } else if (option.starts_with("--boot-image=")) {
Brian Carlstromb0011262011-12-09 12:17:24 -0800674 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700675 } else if (option.starts_with("--host-prefix=")) {
Brian Carlstrom34f1fa42012-04-05 18:28:12 -0700676 host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data()));
Ian Rogers49c48942012-03-11 15:15:37 -0700677 } else if (option.starts_with("--instruction-set=")) {
678 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data();
jeffhao1f71ae82012-05-24 16:08:24 -0700679 if (instruction_set_str == "arm") {
Ian Rogers49c48942012-03-11 15:15:37 -0700680 instruction_set = kThumb2;
jeffhao1f71ae82012-05-24 16:08:24 -0700681 } else if (instruction_set_str == "mips") {
Ian Rogers49c48942012-03-11 15:15:37 -0700682 instruction_set = kMips;
jeffhao1f71ae82012-05-24 16:08:24 -0700683 } else if (instruction_set_str == "x86") {
Ian Rogers49c48942012-03-11 15:15:37 -0700684 instruction_set = kX86;
685 }
buzbeec531cef2012-10-18 07:09:20 -0700686 } else if (option.starts_with("--compiler-backend=")) {
687 StringPiece backend_str = option.substr(strlen("--compiler-backend=")).data();
688 if (backend_str == "Quick") {
689 compiler_backend = kQuick;
690 } else if (backend_str == "QuickGBC") {
691 compiler_backend = kQuickGBC;
692 } else if (backend_str == "Iceland") {
693 // TODO: remove this when Portable/Iceland merge complete
694 compiler_backend = kIceland;
695 } else if (backend_str == "Portable") {
696 compiler_backend = kPortable;
697 }
jeffhao5d840402011-10-24 17:09:45 -0700698 } else if (option == "--runtime-arg") {
699 if (++i >= argc) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800700 Usage("Missing required argument for --runtime-arg");
jeffhao5d840402011-10-24 17:09:45 -0700701 }
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800702 if (log_options) {
703 LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i];
704 }
jeffhao5d840402011-10-24 17:09:45 -0700705 runtime_args.push_back(argv[i]);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700706 } else {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800707 Usage("unknown argument %s", option.data());
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700708 }
709 }
710
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800711 if (oat_filename.empty() && oat_fd == -1) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800712 Usage("Output must be supplied with either --oat-file or --oat-fd");
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800713 }
714
715 if (!oat_filename.empty() && oat_fd != -1) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800716 Usage("--oat-file should not be used with --oat-fd");
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800717 }
718
719 if (!oat_filename.empty() && oat_fd != -1) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800720 Usage("--oat-file should not be used with --oat-fd");
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800721 }
722
Brian Carlstroma004aa92012-02-08 18:05:09 -0800723 if (oat_fd != -1 && !image_filename.empty()) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800724 Usage("--oat-fd should not be used with --image");
Brian Carlstrome24fa612011-09-29 00:53:55 -0700725 }
726
Brian Carlstrom34f1fa42012-04-05 18:28:12 -0700727 if (host_prefix.get() == NULL) {
Brian Carlstromb0011262011-12-09 12:17:24 -0800728 const char* android_product_out = getenv("ANDROID_PRODUCT_OUT");
729 if (android_product_out != NULL) {
Brian Carlstrom34f1fa42012-04-05 18:28:12 -0700730 host_prefix.reset(new std::string(android_product_out));
Brian Carlstromb0011262011-12-09 12:17:24 -0800731 }
732 }
733
Brian Carlstroma004aa92012-02-08 18:05:09 -0800734 bool image = (!image_filename.empty());
Brian Carlstromb0011262011-12-09 12:17:24 -0800735 if (!image && boot_image_filename.empty()) {
Brian Carlstrom34f1fa42012-04-05 18:28:12 -0700736 if (host_prefix.get() == NULL) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800737 boot_image_filename += GetAndroidRoot();
738 } else {
Brian Carlstrom34f1fa42012-04-05 18:28:12 -0700739 boot_image_filename += *host_prefix.get();
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800740 boot_image_filename += "/system";
741 }
742 boot_image_filename += "/framework/boot.art";
Brian Carlstromb0011262011-12-09 12:17:24 -0800743 }
744 std::string boot_image_option;
Brian Carlstroma004aa92012-02-08 18:05:09 -0800745 if (!boot_image_filename.empty()) {
Brian Carlstromb0011262011-12-09 12:17:24 -0800746 boot_image_option += "-Ximage:";
747 boot_image_option += boot_image_filename;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700748 }
749
Brian Carlstromae826982011-11-09 01:33:42 -0800750 if (image_classes_filename != NULL && !image) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800751 Usage("--image-classes should only be used with --image");
Brian Carlstromae826982011-11-09 01:33:42 -0800752 }
753
754 if (image_classes_filename != NULL && !boot_image_option.empty()) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800755 Usage("--image-classes should not be used with --boot-image");
Brian Carlstrom78128a62011-09-15 17:21:19 -0700756 }
757
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800758 if (dex_filenames.empty() && zip_fd == -1) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800759 Usage("Input must be supplied with either --dex-file or --zip-fd");
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800760 }
761
762 if (!dex_filenames.empty() && zip_fd != -1) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800763 Usage("--dex-file should not be used with --zip-fd");
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800764 }
765
Brian Carlstroma004aa92012-02-08 18:05:09 -0800766 if (!dex_filenames.empty() && !zip_location.empty()) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800767 Usage("--dex-file should not be used with --zip-location");
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800768 }
769
Brian Carlstroma004aa92012-02-08 18:05:09 -0800770 if (dex_locations.empty()) {
771 for (size_t i = 0; i < dex_filenames.size(); i++) {
772 dex_locations.push_back(dex_filenames[i]);
773 }
774 } else if (dex_locations.size() != dex_filenames.size()) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800775 Usage("--dex-location arguments do not match --dex-file arguments");
Brian Carlstroma004aa92012-02-08 18:05:09 -0800776 }
777
778 if (zip_fd != -1 && zip_location.empty()) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800779 Usage("--zip-location should be supplied with --zip-fd");
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800780 }
781
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700782 if (boot_image_option.empty()) {
783 if (image_base == 0) {
Brian Carlstromcbfe6fe2012-02-17 11:13:36 -0800784 Usage("non-zero --base not specified");
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700785 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700786 }
787
Brian Carlstrom994d62a2012-11-05 20:43:45 -0800788 // Done with usage checks, enable watchdog if requested
789 WatchDog watch_dog(watch_dog_enabled);
790
Brian Carlstrom6ef827a2011-12-11 14:57:47 -0800791 // Check early that the result of compilation can be written
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800792 UniquePtr<File> oat_file;
Brian Carlstrom6cd40e52012-05-03 14:15:11 -0700793 bool create_file = !oat_filename.empty(); // as opposed to using open file descriptor
794 if (create_file) {
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800795 oat_file.reset(OS::OpenFile(oat_filename.c_str(), true));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800796 if (oat_location.empty()) {
797 oat_location = oat_filename;
798 }
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800799 } else {
Elliott Hughes76160052012-12-12 16:31:20 -0800800 oat_file.reset(new File(oat_fd, oat_location));
801 oat_file->DisableAutoClose();
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800802 }
Brian Carlstrom6ef827a2011-12-11 14:57:47 -0800803 if (oat_file.get() == NULL) {
Brian Carlstrom6cd40e52012-05-03 14:15:11 -0700804 PLOG(ERROR) << "Failed to create oat file: " << oat_location;
805 return EXIT_FAILURE;
806 }
807 if (create_file && fchmod(oat_file->Fd(), 0644) != 0) {
808 PLOG(ERROR) << "Failed to make oat file world readable: " << oat_location;
Brian Carlstrom6ef827a2011-12-11 14:57:47 -0800809 return EXIT_FAILURE;
Ian Rogers5e863dd2011-11-02 20:00:10 -0700810 }
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800811
Brian Carlstroma004aa92012-02-08 18:05:09 -0800812 LOG(INFO) << "dex2oat: " << oat_location;
Ian Rogers5e863dd2011-11-02 20:00:10 -0700813
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700814 Runtime::Options options;
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700815 options.push_back(std::make_pair("compiler", reinterpret_cast<void*>(NULL)));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800816 std::vector<const DexFile*> boot_class_path;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700817 if (boot_image_option.empty()) {
Elliott Hughesbf1b4572012-05-24 19:11:39 -0700818 size_t failure_count = OpenDexFiles(dex_filenames, dex_locations, boot_class_path);
819 if (failure_count > 0) {
820 LOG(ERROR) << "Failed to open some dex files: " << failure_count;
821 return EXIT_FAILURE;
822 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800823 options.push_back(std::make_pair("bootclasspath", &boot_class_path));
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700824 } else {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700825 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
826 }
Brian Carlstrom34f1fa42012-04-05 18:28:12 -0700827 if (host_prefix.get() != NULL) {
828 options.push_back(std::make_pair("host-prefix", host_prefix->c_str()));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700829 }
jeffhao5d840402011-10-24 17:09:45 -0700830 for (size_t i = 0; i < runtime_args.size(); i++) {
831 options.push_back(std::make_pair(runtime_args[i], reinterpret_cast<void*>(NULL)));
832 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700833
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700834 Dex2Oat* p_dex2oat;
buzbeec531cef2012-10-18 07:09:20 -0700835 if (!Dex2Oat::Create(&p_dex2oat, options, compiler_backend, instruction_set, thread_count, support_debugging)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700836 LOG(ERROR) << "Failed to create dex2oat";
837 return EXIT_FAILURE;
838 }
839 UniquePtr<Dex2Oat> dex2oat(p_dex2oat);
840 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
841 // give it away now and then switch to a more managable ScopedObjectAccess.
842 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
843 // Whilst we're in native take the opportunity to initialize well known classes.
844 WellKnownClasses::InitClasses(Thread::Current()->GetJniEnv());
845 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700846
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800847 // If --image-classes was specified, calculate the full list of classes to include in the image
Brian Carlstromae826982011-11-09 01:33:42 -0800848 UniquePtr<const std::set<std::string> > image_classes(NULL);
849 if (image_classes_filename != NULL) {
850 image_classes.reset(dex2oat->GetImageClassDescriptors(image_classes_filename));
851 if (image_classes.get() == NULL) {
852 LOG(ERROR) << "Failed to create list of image classes from " << image_classes_filename;
853 return EXIT_FAILURE;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700854 }
855 }
856
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800857 std::vector<const DexFile*> dex_files;
858 if (boot_image_option.empty()) {
859 dex_files = Runtime::Current()->GetClassLinker()->GetBootClassPath();
860 } else {
861 if (dex_filenames.empty()) {
862 UniquePtr<ZipArchive> zip_archive(ZipArchive::OpenFromFd(zip_fd));
863 if (zip_archive.get() == NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800864 LOG(ERROR) << "Failed to zip from file descriptor for " << zip_location;
Brian Carlstrom2e3d1b22012-01-09 18:01:56 -0800865 return EXIT_FAILURE;
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800866 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800867 const DexFile* dex_file = DexFile::Open(*zip_archive.get(), zip_location);
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800868 if (dex_file == NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800869 LOG(ERROR) << "Failed to open dex from file descriptor for zip file: " << zip_location;
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800870 return EXIT_FAILURE;
871 }
872 dex_files.push_back(dex_file);
873 } else {
Elliott Hughesbf1b4572012-05-24 19:11:39 -0700874 size_t failure_count = OpenDexFiles(dex_filenames, dex_locations, dex_files);
875 if (failure_count > 0) {
876 LOG(ERROR) << "Failed to open some dex files: " << failure_count;
877 return EXIT_FAILURE;
878 }
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800879 }
880 }
881
Brian Carlstromf5822582012-03-19 22:34:31 -0700882 UniquePtr<const Compiler> compiler(dex2oat->CreateOatFile(boot_image_option,
Brian Carlstrom34f1fa42012-04-05 18:28:12 -0700883 host_prefix.get(),
Brian Carlstromf5822582012-03-19 22:34:31 -0700884 dex_files,
885 oat_file.get(),
Brian Carlstromf5822582012-03-19 22:34:31 -0700886 bitcode_filename,
Brian Carlstromf5822582012-03-19 22:34:31 -0700887 image,
Brian Carlstromba0668e2012-03-26 13:14:07 -0700888 image_classes.get(),
889 dump_stats,
890 dump_timings));
Brian Carlstromf5822582012-03-19 22:34:31 -0700891
892 if (compiler.get() == NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800893 LOG(ERROR) << "Failed to create oat file: " << oat_location;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700894 return EXIT_FAILURE;
895 }
896
Brian Carlstromae826982011-11-09 01:33:42 -0800897 if (!image) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800898 LOG(INFO) << "Oat file written successfully: " << oat_location;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700899 return EXIT_SUCCESS;
900 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700901
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700902 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
903 bool image_creation_success = dex2oat->CreateImageFile(image_filename,
904 image_base,
905 image_classes.get(),
906 oat_filename,
907 oat_location,
908 *compiler.get());
909 Thread::Current()->TransitionFromSuspendedToRunnable();
910 if (!image_creation_success) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700911 return EXIT_FAILURE;
912 }
913
Brian Carlstromae826982011-11-09 01:33:42 -0800914 // We wrote the oat file successfully, and want to keep it.
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800915 LOG(INFO) << "Oat file written successfully: " << oat_filename;
916 LOG(INFO) << "Image written successfully: " << image_filename;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700917 return EXIT_SUCCESS;
918}
919
920} // namespace art
921
922int main(int argc, char** argv) {
923 return art::dex2oat(argc, argv);
924}