blob: 7c81ffb16eef767d8ea394d46d64f2a34af4785a [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
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 */
16
17#include <stdio.h>
18#include <stdlib.h>
19#include <sys/stat.h>
Ian Rogers2672a9f2013-09-05 17:24:22 -070020#include <valgrind.h>
Brian Carlstrom7940e442013-07-12 13:46:57 -070021
22#include <fstream>
23#include <iostream>
24#include <sstream>
25#include <string>
26#include <vector>
27
28#include "base/stl_util.h"
29#include "base/stringpiece.h"
30#include "base/timing_logger.h"
31#include "base/unix_file/fd_file.h"
32#include "class_linker.h"
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +000033#include "compiler_backend.h"
Vladimir Marko2b5eaa22013-12-13 13:59:30 +000034#include "compiler_callbacks.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070035#include "dex_file-inl.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000036#include "dex/verification_results.h"
Brian Carlstrom6449c622014-02-10 23:48:36 -080037#include "driver/compiler_callbacks_impl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070038#include "driver/compiler_driver.h"
Brian Carlstrom6449c622014-02-10 23:48:36 -080039#include "driver/compiler_options.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070040#include "elf_fixup.h"
41#include "elf_stripper.h"
42#include "gc/space/image_space.h"
43#include "gc/space/space-inl.h"
44#include "image_writer.h"
45#include "leb128.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070046#include "mirror/art_method-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070047#include "mirror/class-inl.h"
48#include "mirror/class_loader.h"
49#include "mirror/object-inl.h"
50#include "mirror/object_array-inl.h"
51#include "oat_writer.h"
52#include "object_utils.h"
53#include "os.h"
54#include "runtime.h"
55#include "ScopedLocalRef.h"
56#include "scoped_thread_state_change.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070057#include "vector_output_stream.h"
58#include "well_known_classes.h"
59#include "zip_archive.h"
60
61namespace art {
62
Brian Carlstrom6449c622014-02-10 23:48:36 -080063static int original_argc;
64static char** original_argv;
65
66static std::string CommandLine() {
67 std::vector<std::string> command;
68 for (int i = 0; i < original_argc; ++i) {
69 command.push_back(original_argv[i]);
70 }
71 return Join(command, ' ');
72}
73
Brian Carlstrom7940e442013-07-12 13:46:57 -070074static void UsageErrorV(const char* fmt, va_list ap) {
75 std::string error;
76 StringAppendV(&error, fmt, ap);
77 LOG(ERROR) << error;
78}
79
80static void UsageError(const char* fmt, ...) {
81 va_list ap;
82 va_start(ap, fmt);
83 UsageErrorV(fmt, ap);
84 va_end(ap);
85}
86
87static void Usage(const char* fmt, ...) {
88 va_list ap;
89 va_start(ap, fmt);
90 UsageErrorV(fmt, ap);
91 va_end(ap);
92
Brian Carlstrom6449c622014-02-10 23:48:36 -080093 UsageError("Command: %s", CommandLine().c_str());
94
Brian Carlstrom7940e442013-07-12 13:46:57 -070095 UsageError("Usage: dex2oat [options]...");
96 UsageError("");
97 UsageError(" --dex-file=<dex-file>: specifies a .dex file to compile.");
98 UsageError(" Example: --dex-file=/system/framework/core.jar");
99 UsageError("");
100 UsageError(" --zip-fd=<file-descriptor>: specifies a file descriptor of a zip file");
101 UsageError(" containing a classes.dex file to compile.");
102 UsageError(" Example: --zip-fd=5");
103 UsageError("");
Brian Carlstrom45602482013-07-21 22:07:55 -0700104 UsageError(" --zip-location=<zip-location>: specifies a symbolic name for the file");
105 UsageError(" corresponding to the file descriptor specified by --zip-fd.");
Brian Carlstrom7940e442013-07-12 13:46:57 -0700106 UsageError(" Example: --zip-location=/system/app/Calculator.apk");
107 UsageError("");
108 UsageError(" --oat-file=<file.oat>: specifies the oat output destination via a filename.");
109 UsageError(" Example: --oat-file=/system/framework/boot.oat");
110 UsageError("");
111 UsageError(" --oat-fd=<number>: specifies the oat output destination via a file descriptor.");
112 UsageError(" Example: --oat-file=/system/framework/boot.oat");
113 UsageError("");
114 UsageError(" --oat-location=<oat-name>: specifies a symbolic name for the file corresponding");
115 UsageError(" to the file descriptor specified by --oat-fd.");
116 UsageError(" Example: --oat-location=/data/dalvik-cache/system@app@Calculator.apk.oat");
117 UsageError("");
118 UsageError(" --oat-symbols=<file.oat>: specifies the oat output destination with full symbols.");
119 UsageError(" Example: --oat-symbols=/symbols/system/framework/boot.oat");
120 UsageError("");
121 UsageError(" --bitcode=<file.bc>: specifies the optional bitcode filename.");
122 UsageError(" Example: --bitcode=/system/framework/boot.bc");
123 UsageError("");
124 UsageError(" --image=<file.art>: specifies the output image filename.");
125 UsageError(" Example: --image=/system/framework/boot.art");
126 UsageError("");
127 UsageError(" --image-classes=<classname-file>: specifies classes to include in an image.");
128 UsageError(" Example: --image=frameworks/base/preloaded-classes");
129 UsageError("");
130 UsageError(" --base=<hex-address>: specifies the base address when creating a boot image.");
131 UsageError(" Example: --base=0x50000000");
132 UsageError("");
133 UsageError(" --boot-image=<file.art>: provide the image file for the boot class path.");
134 UsageError(" Example: --boot-image=/system/framework/boot.art");
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000135 UsageError(" Default: $ANDROID_ROOT/system/framework/boot.art");
Brian Carlstrom7940e442013-07-12 13:46:57 -0700136 UsageError("");
137 UsageError(" --android-root=<path>: used to locate libraries for portable linking.");
138 UsageError(" Example: --android-root=out/host/linux-x86");
139 UsageError(" Default: $ANDROID_ROOT");
140 UsageError("");
Ian Rogersbefbd572014-03-06 01:13:39 -0800141 UsageError(" --instruction-set=(arm|mips|x86|x86_64): compile for a particular instruction");
Brian Carlstrom7940e442013-07-12 13:46:57 -0700142 UsageError(" set.");
143 UsageError(" Example: --instruction-set=x86");
144 UsageError(" Default: arm");
145 UsageError("");
Dave Allison70202782013-10-22 17:52:19 -0700146 UsageError(" --instruction-set-features=...,: Specify instruction set features");
147 UsageError(" Example: --instruction-set-features=div");
148 UsageError(" Default: default");
149 UsageError("");
Brian Carlstrom7940e442013-07-12 13:46:57 -0700150 UsageError(" --compiler-backend=(Quick|QuickGBC|Portable): select compiler backend");
151 UsageError(" set.");
Brian Carlstrom635733d2013-10-30 23:19:31 -0700152 UsageError(" Example: --compiler-backend=Portable");
Brian Carlstrom7940e442013-07-12 13:46:57 -0700153 UsageError(" Default: Quick");
154 UsageError("");
Brian Carlstrom6449c622014-02-10 23:48:36 -0800155 UsageError(" --compiler-filter=(interpret-only|space|balanced|speed|everything): select");
156 UsageError(" compiler filter.");
157 UsageError(" Example: --compiler-filter=everything");
158#if ART_SMALL_MODE
159 UsageError(" Default: interpret-only");
160#else
161 UsageError(" Default: speed");
162#endif
163 UsageError("");
164 UsageError(" --huge-method-max=<method-instruction-count>: the threshold size for a huge");
165 UsageError(" method for compiler filter tuning.");
166 UsageError(" Example: --huge-method-max=%d", CompilerOptions::kDefaultHugeMethodThreshold);
167 UsageError(" Default: %d", CompilerOptions::kDefaultHugeMethodThreshold);
168 UsageError("");
169 UsageError(" --huge-method-max=<method-instruction-count>: threshold size for a huge");
170 UsageError(" method for compiler filter tuning.");
171 UsageError(" Example: --huge-method-max=%d", CompilerOptions::kDefaultHugeMethodThreshold);
172 UsageError(" Default: %d", CompilerOptions::kDefaultHugeMethodThreshold);
173 UsageError("");
174 UsageError(" --large-method-max=<method-instruction-count>: threshold size for a large");
175 UsageError(" method for compiler filter tuning.");
176 UsageError(" Example: --large-method-max=%d", CompilerOptions::kDefaultLargeMethodThreshold);
177 UsageError(" Default: %d", CompilerOptions::kDefaultLargeMethodThreshold);
178 UsageError("");
179 UsageError(" --small-method-max=<method-instruction-count>: threshold size for a small");
180 UsageError(" method for compiler filter tuning.");
181 UsageError(" Example: --small-method-max=%d", CompilerOptions::kDefaultSmallMethodThreshold);
182 UsageError(" Default: %d", CompilerOptions::kDefaultSmallMethodThreshold);
183 UsageError("");
184 UsageError(" --tiny-method-max=<method-instruction-count>: threshold size for a tiny");
185 UsageError(" method for compiler filter tuning.");
186 UsageError(" Example: --tiny-method-max=%d", CompilerOptions::kDefaultTinyMethodThreshold);
187 UsageError(" Default: %d", CompilerOptions::kDefaultTinyMethodThreshold);
188 UsageError("");
189 UsageError(" --num-dex-methods=<method-count>: threshold size for a small dex file for");
190 UsageError(" compiler filter tuning. If the input has fewer than this many methods");
191 UsageError(" and the filter is not interpret-only, overrides the filter to use speed");
192 UsageError(" Example: --num-dex-method=%d", CompilerOptions::kDefaultNumDexMethodsThreshold);
193 UsageError(" Default: %d", CompilerOptions::kDefaultNumDexMethodsThreshold);
194 UsageError("");
Brian Carlstrom7940e442013-07-12 13:46:57 -0700195 UsageError(" --host: used with Portable backend to link against host runtime libraries");
196 UsageError("");
Ian Rogers46398602013-08-20 07:50:36 -0700197 UsageError(" --dump-timing: display a breakdown of where time was spent");
198 UsageError("");
Brian Carlstrom7940e442013-07-12 13:46:57 -0700199 UsageError(" --runtime-arg <argument>: used to specify various arguments for the runtime,");
200 UsageError(" such as initial heap size, maximum heap size, and verbose output.");
201 UsageError(" Use a separate --runtime-arg switch for each argument.");
202 UsageError(" Example: --runtime-arg -Xms256m");
203 UsageError("");
204 std::cerr << "See log for usage error information\n";
205 exit(EXIT_FAILURE);
206}
207
208class Dex2Oat {
209 public:
Brian Carlstrom45602482013-07-21 22:07:55 -0700210 static bool Create(Dex2Oat** p_dex2oat,
Brian Carlstrom6449c622014-02-10 23:48:36 -0800211 const Runtime::Options& runtime_options,
212 const CompilerOptions& compiler_options,
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000213 CompilerBackend::Kind compiler_backend,
Brian Carlstrom45602482013-07-21 22:07:55 -0700214 InstructionSet instruction_set,
Dave Allison70202782013-10-22 17:52:19 -0700215 InstructionSetFeatures instruction_set_features,
Brian Carlstrom6449c622014-02-10 23:48:36 -0800216 VerificationResults* verification_results,
217 DexFileToMethodInlinerMap* method_inliner_map,
Brian Carlstrom45602482013-07-21 22:07:55 -0700218 size_t thread_count)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700219 SHARED_TRYLOCK_FUNCTION(true, Locks::mutator_lock_) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800220 CHECK(verification_results != nullptr);
221 CHECK(method_inliner_map != nullptr);
222 UniquePtr<Dex2Oat> dex2oat(new Dex2Oat(&compiler_options,
223 compiler_backend,
224 instruction_set,
225 instruction_set_features,
226 verification_results,
227 method_inliner_map,
228 thread_count));
229 if (!dex2oat->CreateRuntime(runtime_options, instruction_set)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700230 *p_dex2oat = NULL;
231 return false;
232 }
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000233 *p_dex2oat = dex2oat.release();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700234 return true;
235 }
236
237 ~Dex2Oat() {
238 delete runtime_;
Brian Carlstrom65c23bb2014-02-01 22:12:39 -0800239 LogCompletionTime();
240 }
241
242 void LogCompletionTime() {
243 LOG(INFO) << "dex2oat took " << PrettyDuration(NanoTime() - start_ns_)
Brian Carlstrom45602482013-07-21 22:07:55 -0700244 << " (threads: " << thread_count_ << ")";
Brian Carlstrom7940e442013-07-12 13:46:57 -0700245 }
246
247
Brian Carlstrom45602482013-07-21 22:07:55 -0700248 // Reads the class names (java.lang.Object) and returns a set of descriptors (Ljava/lang/Object;)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700249 CompilerDriver::DescriptorSet* ReadImageClassesFromFile(const char* image_classes_filename) {
Brian Carlstrom45602482013-07-21 22:07:55 -0700250 UniquePtr<std::ifstream> image_classes_file(new std::ifstream(image_classes_filename,
251 std::ifstream::in));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700252 if (image_classes_file.get() == NULL) {
253 LOG(ERROR) << "Failed to open image classes file " << image_classes_filename;
254 return NULL;
255 }
256 UniquePtr<CompilerDriver::DescriptorSet> result(ReadImageClasses(*image_classes_file.get()));
257 image_classes_file->close();
258 return result.release();
259 }
260
261 CompilerDriver::DescriptorSet* ReadImageClasses(std::istream& image_classes_stream) {
262 UniquePtr<CompilerDriver::DescriptorSet> image_classes(new CompilerDriver::DescriptorSet);
263 while (image_classes_stream.good()) {
264 std::string dot;
265 std::getline(image_classes_stream, dot);
266 if (StartsWith(dot, "#") || dot.empty()) {
267 continue;
268 }
269 std::string descriptor(DotToDescriptor(dot.c_str()));
270 image_classes->insert(descriptor);
271 }
272 return image_classes.release();
273 }
274
Brian Carlstrom45602482013-07-21 22:07:55 -0700275 // Reads the class names (java.lang.Object) and returns a set of descriptors (Ljava/lang/Object;)
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700276 CompilerDriver::DescriptorSet* ReadImageClassesFromZip(const char* zip_filename,
277 const char* image_classes_filename,
278 std::string* error_msg) {
279 UniquePtr<ZipArchive> zip_archive(ZipArchive::Open(zip_filename, error_msg));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700280 if (zip_archive.get() == NULL) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700281 return NULL;
282 }
Narayan Kamath92572be2013-11-28 14:06:24 +0000283 UniquePtr<ZipEntry> zip_entry(zip_archive->Find(image_classes_filename, error_msg));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700284 if (zip_entry.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700285 *error_msg = StringPrintf("Failed to find '%s' within '%s': %s", image_classes_filename,
286 zip_filename, error_msg->c_str());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700287 return NULL;
288 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700289 UniquePtr<MemMap> image_classes_file(zip_entry->ExtractToMemMap(image_classes_filename,
290 error_msg));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700291 if (image_classes_file.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700292 *error_msg = StringPrintf("Failed to extract '%s' from '%s': %s", image_classes_filename,
293 zip_filename, error_msg->c_str());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700294 return NULL;
295 }
296 const std::string image_classes_string(reinterpret_cast<char*>(image_classes_file->Begin()),
297 image_classes_file->Size());
298 std::istringstream image_classes_stream(image_classes_string);
299 return ReadImageClasses(image_classes_stream);
300 }
301
302 const CompilerDriver* CreateOatFile(const std::string& boot_image_option,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700303 const std::string& android_root,
304 bool is_host,
305 const std::vector<const DexFile*>& dex_files,
306 File* oat_file,
307 const std::string& bitcode_filename,
308 bool image,
309 UniquePtr<CompilerDriver::DescriptorSet>& image_classes,
310 bool dump_stats,
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000311 bool dump_passes,
312 TimingLogger& timings,
313 CumulativeLogger& compiler_phases_timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700314 // SirtRef and ClassLoader creation needs to come after Runtime::Create
315 jobject class_loader = NULL;
Ian Rogers3f3d22c2013-08-27 18:11:09 -0700316 Thread* self = Thread::Current();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700317 if (!boot_image_option.empty()) {
318 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
319 std::vector<const DexFile*> class_path_files(dex_files);
320 OpenClassPathFiles(runtime_->GetClassPathString(), class_path_files);
Ian Rogers3f3d22c2013-08-27 18:11:09 -0700321 ScopedObjectAccess soa(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700322 for (size_t i = 0; i < class_path_files.size(); i++) {
323 class_linker->RegisterDexFile(*class_path_files[i]);
324 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700325 soa.Env()->AllocObject(WellKnownClasses::dalvik_system_PathClassLoader);
326 ScopedLocalRef<jobject> class_loader_local(soa.Env(),
327 soa.Env()->AllocObject(WellKnownClasses::dalvik_system_PathClassLoader));
328 class_loader = soa.Env()->NewGlobalRef(class_loader_local.get());
329 Runtime::Current()->SetCompileTimeClassPath(class_loader, class_path_files);
330 }
331
Brian Carlstrom6449c622014-02-10 23:48:36 -0800332 UniquePtr<CompilerDriver> driver(new CompilerDriver(compiler_options_,
333 verification_results_,
334 method_inliner_map_,
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000335 compiler_backend_,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700336 instruction_set_,
Dave Allison70202782013-10-22 17:52:19 -0700337 instruction_set_features_,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700338 image,
339 image_classes.release(),
340 thread_count_,
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000341 dump_stats,
342 dump_passes,
343 &compiler_phases_timings));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700344
Ian Rogers3d504072014-03-01 09:16:49 -0800345 driver->GetCompilerBackend()->SetBitcodeFileName(*driver.get(), bitcode_filename);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700346
Ian Rogers3d504072014-03-01 09:16:49 -0800347 driver->CompileAll(class_loader, dex_files, &timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700348
Anwar Ghuloum6f28d912013-07-24 15:02:53 -0700349 timings.NewSplit("dex2oat OatWriter");
Brian Carlstrom7940e442013-07-12 13:46:57 -0700350 std::string image_file_location;
351 uint32_t image_file_location_oat_checksum = 0;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800352 uintptr_t image_file_location_oat_data_begin = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700353 if (!driver->IsImage()) {
Ian Rogersca368cb2013-11-15 15:52:08 -0800354 TimingLogger::ScopedSplit split("Loading image checksum", &timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700355 gc::space::ImageSpace* image_space = Runtime::Current()->GetHeap()->GetImageSpace();
356 image_file_location_oat_checksum = image_space->GetImageHeader().GetOatChecksum();
357 image_file_location_oat_data_begin =
Ian Rogersef7d42f2014-01-06 12:55:46 -0800358 reinterpret_cast<uintptr_t>(image_space->GetImageHeader().GetOatDataBegin());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700359 image_file_location = image_space->GetImageFilename();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700360 }
361
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700362 OatWriter oat_writer(dex_files,
363 image_file_location_oat_checksum,
364 image_file_location_oat_data_begin,
365 image_file_location,
Ian Rogersca368cb2013-11-15 15:52:08 -0800366 driver.get(),
367 &timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700368
Ian Rogersca368cb2013-11-15 15:52:08 -0800369 TimingLogger::ScopedSplit split("Writing ELF", &timings);
Ian Rogers3d504072014-03-01 09:16:49 -0800370 if (!driver->WriteElf(android_root, is_host, dex_files, &oat_writer, oat_file)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700371 LOG(ERROR) << "Failed to write ELF file " << oat_file->GetPath();
372 return NULL;
373 }
374
375 return driver.release();
376 }
377
378 bool CreateImageFile(const std::string& image_filename,
379 uintptr_t image_base,
380 const std::string& oat_filename,
381 const std::string& oat_location,
382 const CompilerDriver& compiler)
383 LOCKS_EXCLUDED(Locks::mutator_lock_) {
384 uintptr_t oat_data_begin;
385 {
386 // ImageWriter is scoped so it can free memory before doing FixupElf
387 ImageWriter image_writer(compiler);
388 if (!image_writer.Write(image_filename, image_base, oat_filename, oat_location)) {
389 LOG(ERROR) << "Failed to create image file " << image_filename;
390 return false;
391 }
392 oat_data_begin = image_writer.GetOatDataBegin();
393 }
394
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700395 UniquePtr<File> oat_file(OS::OpenFileReadWrite(oat_filename.c_str()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700396 if (oat_file.get() == NULL) {
397 PLOG(ERROR) << "Failed to open ELF file: " << oat_filename;
398 return false;
399 }
400 if (!ElfFixup::Fixup(oat_file.get(), oat_data_begin)) {
401 LOG(ERROR) << "Failed to fixup ELF file " << oat_file->GetPath();
402 return false;
403 }
404 return true;
405 }
406
407 private:
Brian Carlstrom6449c622014-02-10 23:48:36 -0800408 explicit Dex2Oat(const CompilerOptions* compiler_options,
409 CompilerBackend::Kind compiler_backend,
Brian Carlstrom45602482013-07-21 22:07:55 -0700410 InstructionSet instruction_set,
Dave Allison70202782013-10-22 17:52:19 -0700411 InstructionSetFeatures instruction_set_features,
Brian Carlstrom6449c622014-02-10 23:48:36 -0800412 VerificationResults* verification_results,
413 DexFileToMethodInlinerMap* method_inliner_map,
Brian Carlstrom0177fe22013-07-21 12:21:36 -0700414 size_t thread_count)
Brian Carlstrom6449c622014-02-10 23:48:36 -0800415 : compiler_options_(compiler_options),
416 compiler_backend_(compiler_backend),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700417 instruction_set_(instruction_set),
Dave Allison70202782013-10-22 17:52:19 -0700418 instruction_set_features_(instruction_set_features),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800419 verification_results_(verification_results),
420 method_inliner_map_(method_inliner_map),
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000421 runtime_(nullptr),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700422 thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700423 start_ns_(NanoTime()) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800424 CHECK(compiler_options != nullptr);
425 CHECK(verification_results != nullptr);
426 CHECK(method_inliner_map != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700427 }
428
Brian Carlstrom6449c622014-02-10 23:48:36 -0800429 bool CreateRuntime(const Runtime::Options& runtime_options, InstructionSet instruction_set)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700430 SHARED_TRYLOCK_FUNCTION(true, Locks::mutator_lock_) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800431 if (!Runtime::Create(runtime_options, false)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700432 LOG(ERROR) << "Failed to create runtime";
433 return false;
434 }
435 Runtime* runtime = Runtime::Current();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700436 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
437 Runtime::CalleeSaveType type = Runtime::CalleeSaveType(i);
438 if (!runtime->HasCalleeSaveMethod(type)) {
439 runtime->SetCalleeSaveMethod(runtime->CreateCalleeSaveMethod(instruction_set, type), type);
440 }
441 }
442 runtime->GetClassLinker()->FixupDexCaches(runtime->GetResolutionMethod());
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000443 runtime_ = runtime;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700444 return true;
445 }
446
447 // Appends to dex_files any elements of class_path that it doesn't already
448 // contain. This will open those dex files as necessary.
Brian Carlstrom45602482013-07-21 22:07:55 -0700449 static void OpenClassPathFiles(const std::string& class_path,
450 std::vector<const DexFile*>& dex_files) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700451 std::vector<std::string> parsed;
452 Split(class_path, ':', parsed);
453 // Take Locks::mutator_lock_ so that lock ordering on the ClassLinker::dex_lock_ is maintained.
454 ScopedObjectAccess soa(Thread::Current());
455 for (size_t i = 0; i < parsed.size(); ++i) {
456 if (DexFilesContains(dex_files, parsed[i])) {
457 continue;
458 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700459 std::string error_msg;
460 const DexFile* dex_file = DexFile::Open(parsed[i].c_str(), parsed[i].c_str(), &error_msg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700461 if (dex_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700462 LOG(WARNING) << "Failed to open dex file '" << parsed[i] << "': " << error_msg;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700463 } else {
464 dex_files.push_back(dex_file);
465 }
466 }
467 }
468
469 // Returns true if dex_files has a dex with the named location.
Brian Carlstrom45602482013-07-21 22:07:55 -0700470 static bool DexFilesContains(const std::vector<const DexFile*>& dex_files,
471 const std::string& location) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700472 for (size_t i = 0; i < dex_files.size(); ++i) {
473 if (dex_files[i]->GetLocation() == location) {
474 return true;
475 }
476 }
477 return false;
478 }
479
Brian Carlstromae7083d2014-02-24 21:56:02 -0800480 const CompilerOptions* const compiler_options_;
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000481 const CompilerBackend::Kind compiler_backend_;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700482
483 const InstructionSet instruction_set_;
Dave Allison70202782013-10-22 17:52:19 -0700484 const InstructionSetFeatures instruction_set_features_;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700485
Brian Carlstromae7083d2014-02-24 21:56:02 -0800486 VerificationResults* const verification_results_;
487 DexFileToMethodInlinerMap* const method_inliner_map_;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700488 Runtime* runtime_;
489 size_t thread_count_;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700490 uint64_t start_ns_;
491
492 DISALLOW_IMPLICIT_CONSTRUCTORS(Dex2Oat);
493};
494
495static bool ParseInt(const char* in, int* out) {
496 char* end;
497 int result = strtol(in, &end, 10);
498 if (in == end || *end != '\0') {
499 return false;
500 }
501 *out = result;
502 return true;
503}
504
Brian Carlstrom3cf59d52013-11-10 21:04:10 -0800505static size_t OpenDexFiles(const std::vector<const char*>& dex_filenames,
506 const std::vector<const char*>& dex_locations,
507 std::vector<const DexFile*>& dex_files) {
508 size_t failure_count = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700509 for (size_t i = 0; i < dex_filenames.size(); i++) {
510 const char* dex_filename = dex_filenames[i];
511 const char* dex_location = dex_locations[i];
Ian Rogers740a11d2014-01-14 10:11:25 -0800512 ATRACE_BEGIN(StringPrintf("Opening dex file '%s'", dex_filenames[i]).c_str());
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700513 std::string error_msg;
Brian Carlstromd5aba592013-11-12 01:52:44 -0800514 if (!OS::FileExists(dex_filename)) {
515 LOG(WARNING) << "Skipping non-existent dex file '" << dex_filename << "'";
516 continue;
517 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700518 const DexFile* dex_file = DexFile::Open(dex_filename, dex_location, &error_msg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700519 if (dex_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700520 LOG(WARNING) << "Failed to open .dex from file '" << dex_filename << "': " << error_msg;
Brian Carlstrom3cf59d52013-11-10 21:04:10 -0800521 ++failure_count;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700522 } else {
523 dex_files.push_back(dex_file);
524 }
Ian Rogers740a11d2014-01-14 10:11:25 -0800525 ATRACE_END();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700526 }
Brian Carlstrom3cf59d52013-11-10 21:04:10 -0800527 return failure_count;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700528}
529
530// The primary goal of the watchdog is to prevent stuck build servers
531// during development when fatal aborts lead to a cascade of failures
532// that result in a deadlock.
533class WatchDog {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700534// WatchDog defines its own CHECK_PTHREAD_CALL to avoid using Log which uses locks
535#undef CHECK_PTHREAD_CALL
536#define CHECK_WATCH_DOG_PTHREAD_CALL(call, args, what) \
537 do { \
538 int rc = call args; \
539 if (rc != 0) { \
540 errno = rc; \
541 std::string message(# call); \
542 message += " failed for "; \
543 message += reason; \
544 Fatal(message); \
545 } \
546 } while (false)
547
548 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -0700549 explicit WatchDog(bool is_watch_dog_enabled) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700550 is_watch_dog_enabled_ = is_watch_dog_enabled;
551 if (!is_watch_dog_enabled_) {
552 return;
553 }
554 shutting_down_ = false;
555 const char* reason = "dex2oat watch dog thread startup";
556 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_init, (&mutex_, NULL), reason);
557 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_init, (&cond_, NULL), reason);
558 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_init, (&attr_), reason);
559 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason);
560 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_destroy, (&attr_), reason);
561 }
562 ~WatchDog() {
563 if (!is_watch_dog_enabled_) {
564 return;
565 }
566 const char* reason = "dex2oat watch dog thread shutdown";
567 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason);
568 shutting_down_ = true;
569 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_signal, (&cond_), reason);
570 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_unlock, (&mutex_), reason);
571
572 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_join, (pthread_, NULL), reason);
573
574 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_destroy, (&cond_), reason);
575 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_destroy, (&mutex_), reason);
576 }
577
578 private:
579 static void* CallBack(void* arg) {
580 WatchDog* self = reinterpret_cast<WatchDog*>(arg);
581 ::art::SetThreadName("dex2oat watch dog");
582 self->Wait();
583 return NULL;
584 }
585
586 static void Message(char severity, const std::string& message) {
587 // TODO: Remove when we switch to LOG when we can guarantee it won't prevent shutdown in error
588 // cases.
589 fprintf(stderr, "dex2oat%s %c %d %d %s\n",
590 kIsDebugBuild ? "d" : "",
591 severity,
592 getpid(),
593 GetTid(),
594 message.c_str());
595 }
596
597 static void Warn(const std::string& message) {
598 Message('W', message);
599 }
600
601 static void Fatal(const std::string& message) {
602 Message('F', message);
603 exit(1);
604 }
605
606 void Wait() {
607 bool warning = true;
608 CHECK_GT(kWatchDogTimeoutSeconds, kWatchDogWarningSeconds);
609 // TODO: tune the multiplier for GC verification, the following is just to make the timeout
610 // large.
Mathieu Chartier4e305412014-02-19 10:54:44 -0800611 int64_t multiplier = kVerifyObjectSupport > kVerifyObjectModeFast ? 100 : 1;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700612 timespec warning_ts;
613 InitTimeSpec(true, CLOCK_REALTIME, multiplier * kWatchDogWarningSeconds * 1000, 0, &warning_ts);
614 timespec timeout_ts;
615 InitTimeSpec(true, CLOCK_REALTIME, multiplier * kWatchDogTimeoutSeconds * 1000, 0, &timeout_ts);
616 const char* reason = "dex2oat watch dog thread waiting";
617 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason);
618 while (!shutting_down_) {
619 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_,
620 warning ? &warning_ts
621 : &timeout_ts));
622 if (rc == ETIMEDOUT) {
623 std::string message(StringPrintf("dex2oat did not finish after %d seconds",
624 warning ? kWatchDogWarningSeconds
625 : kWatchDogTimeoutSeconds));
626 if (warning) {
627 Warn(message.c_str());
628 warning = false;
629 } else {
630 Fatal(message.c_str());
631 }
632 } else if (rc != 0) {
633 std::string message(StringPrintf("pthread_cond_timedwait failed: %s",
634 strerror(errno)));
635 Fatal(message.c_str());
636 }
637 }
638 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_unlock, (&mutex_), reason);
639 }
640
641 // When setting timeouts, keep in mind that the build server may not be as fast as your desktop.
642#if ART_USE_PORTABLE_COMPILER
643 static const unsigned int kWatchDogWarningSeconds = 2 * 60; // 2 minutes.
644 static const unsigned int kWatchDogTimeoutSeconds = 30 * 60; // 25 minutes + buffer.
645#else
646 static const unsigned int kWatchDogWarningSeconds = 1 * 60; // 1 minute.
647 static const unsigned int kWatchDogTimeoutSeconds = 6 * 60; // 5 minutes + buffer.
648#endif
649
650 bool is_watch_dog_enabled_;
651 bool shutting_down_;
652 // TODO: Switch to Mutex when we can guarantee it won't prevent shutdown in error cases.
653 pthread_mutex_t mutex_;
654 pthread_cond_t cond_;
655 pthread_attr_t attr_;
656 pthread_t pthread_;
657};
658const unsigned int WatchDog::kWatchDogWarningSeconds;
659const unsigned int WatchDog::kWatchDogTimeoutSeconds;
660
Dave Allison70202782013-10-22 17:52:19 -0700661// Given a set of instruction features from the build, parse it. The
662// input 'str' is a comma separated list of feature names. Parse it and
663// return the InstructionSetFeatures object.
664static InstructionSetFeatures ParseFeatureList(std::string str) {
665 InstructionSetFeatures result;
666 typedef std::vector<std::string> FeatureList;
667 FeatureList features;
668 Split(str, ',', features);
669 for (FeatureList::iterator i = features.begin(); i != features.end(); i++) {
670 std::string feature = Trim(*i);
671 if (feature == "default") {
672 // Nothing to do.
673 } else if (feature == "div") {
674 // Supports divide instruction.
675 result.SetHasDivideInstruction(true);
676 } else if (feature == "nodiv") {
677 // Turn off support for divide instruction.
678 result.SetHasDivideInstruction(false);
679 } else {
680 Usage("Unknown instruction set feature: '%s'", feature.c_str());
681 }
682 }
683 // others...
684 return result;
685}
686
Brian Carlstrom7940e442013-07-12 13:46:57 -0700687static int dex2oat(int argc, char** argv) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800688 original_argc = argc;
689 original_argv = argv;
690
Ian Rogers5fe9af72013-11-14 00:17:20 -0800691 TimingLogger timings("compiler", false, false);
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000692 CumulativeLogger compiler_phases_timings("compilation times");
Brian Carlstrom45602482013-07-21 22:07:55 -0700693
Brian Carlstrom7940e442013-07-12 13:46:57 -0700694 InitLogging(argv);
695
696 // Skip over argv[0].
697 argv++;
698 argc--;
699
700 if (argc == 0) {
Brian Carlstrome0948e12013-08-29 09:36:15 -0700701 Usage("No arguments specified");
Brian Carlstrom7940e442013-07-12 13:46:57 -0700702 }
703
704 std::vector<const char*> dex_filenames;
705 std::vector<const char*> dex_locations;
706 int zip_fd = -1;
707 std::string zip_location;
708 std::string oat_filename;
709 std::string oat_symbols;
710 std::string oat_location;
711 int oat_fd = -1;
712 std::string bitcode_filename;
713 const char* image_classes_zip_filename = NULL;
714 const char* image_classes_filename = NULL;
715 std::string image_filename;
716 std::string boot_image_filename;
717 uintptr_t image_base = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700718 std::string android_root;
719 std::vector<const char*> runtime_args;
720 int thread_count = sysconf(_SC_NPROCESSORS_CONF);
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000721 CompilerBackend::Kind compiler_backend = kUsePortableCompiler
722 ? CompilerBackend::kPortable
723 : CompilerBackend::kQuick;
Brian Carlstrom6449c622014-02-10 23:48:36 -0800724 const char* compiler_filter_string = NULL;
725 int huge_method_threshold = CompilerOptions::kDefaultHugeMethodThreshold;
726 int large_method_threshold = CompilerOptions::kDefaultLargeMethodThreshold;
727 int small_method_threshold = CompilerOptions::kDefaultSmallMethodThreshold;
728 int tiny_method_threshold = CompilerOptions::kDefaultTinyMethodThreshold;
729 int num_dex_methods_threshold = CompilerOptions::kDefaultNumDexMethodsThreshold;
Dave Allison70202782013-10-22 17:52:19 -0700730
Brian Carlstrom1bd2ceb2013-11-06 00:29:48 -0800731 // Take the default set of instruction features from the build.
Dave Allison70202782013-10-22 17:52:19 -0700732 InstructionSetFeatures instruction_set_features =
Brian Carlstrom1bd2ceb2013-11-06 00:29:48 -0800733 ParseFeatureList(STRINGIFY(ART_DEFAULT_INSTRUCTION_SET_FEATURES));
Dave Allison70202782013-10-22 17:52:19 -0700734
Brian Carlstrom7940e442013-07-12 13:46:57 -0700735#if defined(__arm__)
736 InstructionSet instruction_set = kThumb2;
737#elif defined(__i386__)
738 InstructionSet instruction_set = kX86;
739#elif defined(__mips__)
740 InstructionSet instruction_set = kMips;
741#else
Ian Rogersef7d42f2014-01-06 12:55:46 -0800742 InstructionSet instruction_set = kNone;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700743#endif
Dave Allison70202782013-10-22 17:52:19 -0700744
745
Brian Carlstrom7940e442013-07-12 13:46:57 -0700746 bool is_host = false;
Ian Rogerse732ef12013-10-09 15:22:24 -0700747 bool dump_stats = false;
Ian Rogers46398602013-08-20 07:50:36 -0700748 bool dump_timing = false;
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000749 bool dump_passes = false;
Ian Rogers46398602013-08-20 07:50:36 -0700750 bool dump_slow_timing = kIsDebugBuild;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700751 bool watch_dog_enabled = !kIsTargetBuild;
Mark Mendellae9fd932014-02-10 16:14:35 -0800752 bool generate_gdb_information = kIsDebugBuild;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700753
Brian Carlstrom7940e442013-07-12 13:46:57 -0700754 for (int i = 0; i < argc; i++) {
755 const StringPiece option(argv[i]);
756 bool log_options = false;
757 if (log_options) {
758 LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i];
759 }
760 if (option.starts_with("--dex-file=")) {
761 dex_filenames.push_back(option.substr(strlen("--dex-file=")).data());
762 } else if (option.starts_with("--dex-location=")) {
763 dex_locations.push_back(option.substr(strlen("--dex-location=")).data());
764 } else if (option.starts_with("--zip-fd=")) {
765 const char* zip_fd_str = option.substr(strlen("--zip-fd=")).data();
766 if (!ParseInt(zip_fd_str, &zip_fd)) {
Brian Carlstrome0948e12013-08-29 09:36:15 -0700767 Usage("Failed to parse --zip-fd argument '%s' as an integer", zip_fd_str);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700768 }
Brian Carlstrom6449c622014-02-10 23:48:36 -0800769 if (zip_fd < 0) {
770 Usage("--zip-fd passed a negative value %d", zip_fd);
771 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700772 } else if (option.starts_with("--zip-location=")) {
773 zip_location = option.substr(strlen("--zip-location=")).data();
774 } else if (option.starts_with("--oat-file=")) {
775 oat_filename = option.substr(strlen("--oat-file=")).data();
776 } else if (option.starts_with("--oat-symbols=")) {
777 oat_symbols = option.substr(strlen("--oat-symbols=")).data();
778 } else if (option.starts_with("--oat-fd=")) {
779 const char* oat_fd_str = option.substr(strlen("--oat-fd=")).data();
780 if (!ParseInt(oat_fd_str, &oat_fd)) {
Brian Carlstrome0948e12013-08-29 09:36:15 -0700781 Usage("Failed to parse --oat-fd argument '%s' as an integer", oat_fd_str);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700782 }
Brian Carlstrom6449c622014-02-10 23:48:36 -0800783 if (oat_fd < 0) {
784 Usage("--oat-fd passed a negative value %d", oat_fd);
785 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700786 } else if (option == "--watch-dog") {
787 watch_dog_enabled = true;
788 } else if (option == "--no-watch-dog") {
789 watch_dog_enabled = false;
Mark Mendellae9fd932014-02-10 16:14:35 -0800790 } else if (option == "--gen-gdb-info") {
791 generate_gdb_information = true;
792 } else if (option == "--no-gen-gdb-info") {
793 generate_gdb_information = false;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700794 } else if (option.starts_with("-j")) {
795 const char* thread_count_str = option.substr(strlen("-j")).data();
796 if (!ParseInt(thread_count_str, &thread_count)) {
Brian Carlstrome0948e12013-08-29 09:36:15 -0700797 Usage("Failed to parse -j argument '%s' as an integer", thread_count_str);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700798 }
799 } else if (option.starts_with("--oat-location=")) {
800 oat_location = option.substr(strlen("--oat-location=")).data();
801 } else if (option.starts_with("--bitcode=")) {
802 bitcode_filename = option.substr(strlen("--bitcode=")).data();
803 } else if (option.starts_with("--image=")) {
804 image_filename = option.substr(strlen("--image=")).data();
805 } else if (option.starts_with("--image-classes=")) {
806 image_classes_filename = option.substr(strlen("--image-classes=")).data();
807 } else if (option.starts_with("--image-classes-zip=")) {
808 image_classes_zip_filename = option.substr(strlen("--image-classes-zip=")).data();
809 } else if (option.starts_with("--base=")) {
810 const char* image_base_str = option.substr(strlen("--base=")).data();
811 char* end;
812 image_base = strtoul(image_base_str, &end, 16);
813 if (end == image_base_str || *end != '\0') {
814 Usage("Failed to parse hexadecimal value for option %s", option.data());
815 }
816 } else if (option.starts_with("--boot-image=")) {
817 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700818 } else if (option.starts_with("--android-root=")) {
819 android_root = option.substr(strlen("--android-root=")).data();
820 } else if (option.starts_with("--instruction-set=")) {
821 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data();
822 if (instruction_set_str == "arm") {
823 instruction_set = kThumb2;
824 } else if (instruction_set_str == "mips") {
825 instruction_set = kMips;
826 } else if (instruction_set_str == "x86") {
827 instruction_set = kX86;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800828 } else if (instruction_set_str == "x86_64") {
829 instruction_set = kX86_64;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700830 }
Dave Allison70202782013-10-22 17:52:19 -0700831 } else if (option.starts_with("--instruction-set-features=")) {
832 StringPiece str = option.substr(strlen("--instruction-set-features=")).data();
833 instruction_set_features = ParseFeatureList(str.as_string());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700834 } else if (option.starts_with("--compiler-backend=")) {
835 StringPiece backend_str = option.substr(strlen("--compiler-backend=")).data();
836 if (backend_str == "Quick") {
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000837 compiler_backend = CompilerBackend::kQuick;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700838 } else if (backend_str == "Portable") {
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000839 compiler_backend = CompilerBackend::kPortable;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700840 }
Brian Carlstrom6449c622014-02-10 23:48:36 -0800841 } else if (option.starts_with("--compiler-filter=")) {
842 compiler_filter_string = option.substr(strlen("--compiler-filter=")).data();
843 } else if (option.starts_with("--huge-method-max=")) {
844 const char* threshold = option.substr(strlen("--huge-method-max=")).data();
845 if (!ParseInt(threshold, &huge_method_threshold)) {
846 Usage("Failed to parse --huge-method-max '%s' as an integer", threshold);
847 }
848 if (huge_method_threshold < 0) {
849 Usage("--huge-method-max passed a negative value %s", huge_method_threshold);
850 }
851 } else if (option.starts_with("--large-method-max=")) {
852 const char* threshold = option.substr(strlen("--large-method-max=")).data();
853 if (!ParseInt(threshold, &large_method_threshold)) {
854 Usage("Failed to parse --large-method-max '%s' as an integer", threshold);
855 }
856 if (large_method_threshold < 0) {
857 Usage("--large-method-max passed a negative value %s", large_method_threshold);
858 }
859 } else if (option.starts_with("--small-method-max=")) {
860 const char* threshold = option.substr(strlen("--small-method-max=")).data();
861 if (!ParseInt(threshold, &small_method_threshold)) {
862 Usage("Failed to parse --small-method-max '%s' as an integer", threshold);
863 }
864 if (small_method_threshold < 0) {
865 Usage("--small-method-max passed a negative value %s", small_method_threshold);
866 }
867 } else if (option.starts_with("--tiny-method-max=")) {
868 const char* threshold = option.substr(strlen("--tiny-method-max=")).data();
869 if (!ParseInt(threshold, &tiny_method_threshold)) {
870 Usage("Failed to parse --tiny-method-max '%s' as an integer", threshold);
871 }
872 if (tiny_method_threshold < 0) {
873 Usage("--tiny-method-max passed a negative value %s", tiny_method_threshold);
874 }
875 } else if (option.starts_with("--num-dex-methods=")) {
876 const char* threshold = option.substr(strlen("--num-dex-methods=")).data();
877 if (!ParseInt(threshold, &num_dex_methods_threshold)) {
878 Usage("Failed to parse --num-dex-methods '%s' as an integer", threshold);
879 }
880 if (num_dex_methods_threshold < 0) {
881 Usage("--num-dex-methods passed a negative value %s", num_dex_methods_threshold);
882 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700883 } else if (option == "--host") {
884 is_host = true;
885 } else if (option == "--runtime-arg") {
886 if (++i >= argc) {
887 Usage("Missing required argument for --runtime-arg");
888 }
889 if (log_options) {
890 LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i];
891 }
892 runtime_args.push_back(argv[i]);
Ian Rogers46398602013-08-20 07:50:36 -0700893 } else if (option == "--dump-timing") {
894 dump_timing = true;
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000895 } else if (option == "--dump-passes") {
896 dump_passes = true;
Ian Rogerse732ef12013-10-09 15:22:24 -0700897 } else if (option == "--dump-stats") {
898 dump_stats = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700899 } else {
Brian Carlstrome0948e12013-08-29 09:36:15 -0700900 Usage("Unknown argument %s", option.data());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700901 }
902 }
903
904 if (oat_filename.empty() && oat_fd == -1) {
905 Usage("Output must be supplied with either --oat-file or --oat-fd");
906 }
907
908 if (!oat_filename.empty() && oat_fd != -1) {
909 Usage("--oat-file should not be used with --oat-fd");
910 }
911
912 if (!oat_symbols.empty() && oat_fd != -1) {
913 Usage("--oat-symbols should not be used with --oat-fd");
914 }
915
916 if (!oat_symbols.empty() && is_host) {
917 Usage("--oat-symbols should not be used with --host");
918 }
919
920 if (oat_fd != -1 && !image_filename.empty()) {
921 Usage("--oat-fd should not be used with --image");
922 }
923
Brian Carlstrom7940e442013-07-12 13:46:57 -0700924 if (android_root.empty()) {
925 const char* android_root_env_var = getenv("ANDROID_ROOT");
926 if (android_root_env_var == NULL) {
927 Usage("--android-root unspecified and ANDROID_ROOT not set");
928 }
929 android_root += android_root_env_var;
930 }
931
932 bool image = (!image_filename.empty());
933 if (!image && boot_image_filename.empty()) {
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000934 boot_image_filename += GetAndroidRoot();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700935 boot_image_filename += "/framework/boot.art";
936 }
937 std::string boot_image_option;
938 if (!boot_image_filename.empty()) {
939 boot_image_option += "-Ximage:";
940 boot_image_option += boot_image_filename;
941 }
942
943 if (image_classes_filename != NULL && !image) {
944 Usage("--image-classes should only be used with --image");
945 }
946
947 if (image_classes_filename != NULL && !boot_image_option.empty()) {
948 Usage("--image-classes should not be used with --boot-image");
949 }
950
951 if (image_classes_zip_filename != NULL && image_classes_filename == NULL) {
952 Usage("--image-classes-zip should be used with --image-classes");
953 }
954
955 if (dex_filenames.empty() && zip_fd == -1) {
956 Usage("Input must be supplied with either --dex-file or --zip-fd");
957 }
958
959 if (!dex_filenames.empty() && zip_fd != -1) {
960 Usage("--dex-file should not be used with --zip-fd");
961 }
962
963 if (!dex_filenames.empty() && !zip_location.empty()) {
964 Usage("--dex-file should not be used with --zip-location");
965 }
966
967 if (dex_locations.empty()) {
968 for (size_t i = 0; i < dex_filenames.size(); i++) {
969 dex_locations.push_back(dex_filenames[i]);
970 }
971 } else if (dex_locations.size() != dex_filenames.size()) {
972 Usage("--dex-location arguments do not match --dex-file arguments");
973 }
974
975 if (zip_fd != -1 && zip_location.empty()) {
976 Usage("--zip-location should be supplied with --zip-fd");
977 }
978
979 if (boot_image_option.empty()) {
980 if (image_base == 0) {
Brian Carlstrome0948e12013-08-29 09:36:15 -0700981 Usage("Non-zero --base not specified");
Brian Carlstrom7940e442013-07-12 13:46:57 -0700982 }
983 }
984
985 std::string oat_stripped(oat_filename);
986 std::string oat_unstripped;
987 if (!oat_symbols.empty()) {
988 oat_unstripped += oat_symbols;
989 } else {
990 oat_unstripped += oat_filename;
991 }
992
Brian Carlstrom6449c622014-02-10 23:48:36 -0800993 if (compiler_filter_string == NULL) {
Ian Rogersbefbd572014-03-06 01:13:39 -0800994 if (instruction_set == kX86_64) {
995 // TODO: currently x86-64 is only interpreted.
996 compiler_filter_string = "interpret-only";
997 } else if (image) {
Brian Carlstrom5e754d82014-03-05 10:59:04 -0800998 compiler_filter_string = "speed";
Brian Carlstrom6449c622014-02-10 23:48:36 -0800999 } else {
1000#if ART_SMALL_MODE
1001 compiler_filter_string = "interpret-only";
1002#else
1003 compiler_filter_string = "speed";
1004#endif
1005 }
1006 }
1007 CHECK(compiler_filter_string != nullptr);
1008 CompilerOptions::CompilerFilter compiler_filter = CompilerOptions::kDefaultCompilerFilter;
1009 if (strcmp(compiler_filter_string, "interpret-only") == 0) {
1010 compiler_filter = CompilerOptions::kInterpretOnly;
1011 } else if (strcmp(compiler_filter_string, "space") == 0) {
1012 compiler_filter = CompilerOptions::kSpace;
1013 } else if (strcmp(compiler_filter_string, "balanced") == 0) {
1014 compiler_filter = CompilerOptions::kBalanced;
1015 } else if (strcmp(compiler_filter_string, "speed") == 0) {
1016 compiler_filter = CompilerOptions::kSpeed;
1017 } else if (strcmp(compiler_filter_string, "everything") == 0) {
1018 compiler_filter = CompilerOptions::kEverything;
1019 } else {
1020 Usage("Unknown --compiler-filter value %s", compiler_filter_string);
1021 }
1022
1023 CompilerOptions compiler_options(compiler_filter,
1024 huge_method_threshold,
1025 large_method_threshold,
1026 small_method_threshold,
1027 tiny_method_threshold,
Mark Mendellae9fd932014-02-10 16:14:35 -08001028 num_dex_methods_threshold,
1029 generate_gdb_information
Brian Carlstrom6449c622014-02-10 23:48:36 -08001030#ifdef ART_SEA_IR_MODE
1031 , compiler_options.sea_ir_ = true;
1032#endif
1033 ); // NOLINT(whitespace/parens)
1034
Brian Carlstrom7940e442013-07-12 13:46:57 -07001035 // Done with usage checks, enable watchdog if requested
1036 WatchDog watch_dog(watch_dog_enabled);
1037
1038 // Check early that the result of compilation can be written
1039 UniquePtr<File> oat_file;
1040 bool create_file = !oat_unstripped.empty(); // as opposed to using open file descriptor
1041 if (create_file) {
Brian Carlstrom7571e8b2013-08-12 17:04:14 -07001042 oat_file.reset(OS::CreateEmptyFile(oat_unstripped.c_str()));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001043 if (oat_location.empty()) {
1044 oat_location = oat_filename;
1045 }
1046 } else {
1047 oat_file.reset(new File(oat_fd, oat_location));
1048 oat_file->DisableAutoClose();
1049 }
1050 if (oat_file.get() == NULL) {
1051 PLOG(ERROR) << "Failed to create oat file: " << oat_location;
1052 return EXIT_FAILURE;
1053 }
1054 if (create_file && fchmod(oat_file->Fd(), 0644) != 0) {
1055 PLOG(ERROR) << "Failed to make oat file world readable: " << oat_location;
1056 return EXIT_FAILURE;
1057 }
1058
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001059 timings.StartSplit("dex2oat Setup");
Brian Carlstrom6449c622014-02-10 23:48:36 -08001060 LOG(INFO) << "dex2oat: " << CommandLine();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001061
Brian Carlstrom6449c622014-02-10 23:48:36 -08001062 Runtime::Options runtime_options;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001063 std::vector<const DexFile*> boot_class_path;
1064 if (boot_image_option.empty()) {
Brian Carlstrom3cf59d52013-11-10 21:04:10 -08001065 size_t failure_count = OpenDexFiles(dex_filenames, dex_locations, boot_class_path);
1066 if (failure_count > 0) {
1067 LOG(ERROR) << "Failed to open some dex files: " << failure_count;
1068 return EXIT_FAILURE;
1069 }
Brian Carlstrom6449c622014-02-10 23:48:36 -08001070 runtime_options.push_back(std::make_pair("bootclasspath", &boot_class_path));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001071 } else {
Brian Carlstrom6449c622014-02-10 23:48:36 -08001072 runtime_options.push_back(std::make_pair(boot_image_option.c_str(),
1073 reinterpret_cast<void*>(NULL)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001074 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001075 for (size_t i = 0; i < runtime_args.size(); i++) {
Brian Carlstrom6449c622014-02-10 23:48:36 -08001076 runtime_options.push_back(std::make_pair(runtime_args[i], reinterpret_cast<void*>(NULL)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001077 }
1078
Brian Carlstrom6449c622014-02-10 23:48:36 -08001079 VerificationResults verification_results(&compiler_options);
1080 DexFileToMethodInlinerMap method_inliner_map;
1081 CompilerCallbacksImpl callbacks(&verification_results, &method_inliner_map);
1082 runtime_options.push_back(std::make_pair("compilercallbacks", &callbacks));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001083
Brian Carlstrom7940e442013-07-12 13:46:57 -07001084 Dex2Oat* p_dex2oat;
Brian Carlstrom6449c622014-02-10 23:48:36 -08001085 if (!Dex2Oat::Create(&p_dex2oat,
1086 runtime_options,
1087 compiler_options,
1088 compiler_backend,
1089 instruction_set,
1090 instruction_set_features,
1091 &verification_results,
1092 &method_inliner_map,
1093 thread_count)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001094 LOG(ERROR) << "Failed to create dex2oat";
1095 return EXIT_FAILURE;
1096 }
1097 UniquePtr<Dex2Oat> dex2oat(p_dex2oat);
1098 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
Ian Rogers3f3d22c2013-08-27 18:11:09 -07001099 // give it away now so that we don't starve GC.
1100 Thread* self = Thread::Current();
1101 self->TransitionFromRunnableToSuspended(kNative);
Ian Rogers0f40ac32013-08-13 22:10:30 -07001102 // If we're doing the image, override the compiler filter to force full compilation. Must be
buzbeefe9ca402013-08-21 09:48:11 -07001103 // done ahead of WellKnownClasses::Init that causes verification. Note: doesn't force
1104 // compilation of class initializers.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001105 // Whilst we're in native take the opportunity to initialize well known classes.
Ian Rogers3f3d22c2013-08-27 18:11:09 -07001106 WellKnownClasses::Init(self->GetJniEnv());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001107
1108 // If --image-classes was specified, calculate the full list of classes to include in the image
1109 UniquePtr<CompilerDriver::DescriptorSet> image_classes(NULL);
1110 if (image_classes_filename != NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001111 std::string error_msg;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001112 if (image_classes_zip_filename != NULL) {
1113 image_classes.reset(dex2oat->ReadImageClassesFromZip(image_classes_zip_filename,
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001114 image_classes_filename,
1115 &error_msg));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001116 } else {
1117 image_classes.reset(dex2oat->ReadImageClassesFromFile(image_classes_filename));
1118 }
1119 if (image_classes.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001120 LOG(ERROR) << "Failed to create list of image classes from '" << image_classes_filename <<
1121 "': " << error_msg;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001122 return EXIT_FAILURE;
1123 }
1124 }
1125
1126 std::vector<const DexFile*> dex_files;
1127 if (boot_image_option.empty()) {
1128 dex_files = Runtime::Current()->GetClassLinker()->GetBootClassPath();
1129 } else {
1130 if (dex_filenames.empty()) {
Ian Rogers740a11d2014-01-14 10:11:25 -08001131 ATRACE_BEGIN("Opening zip archive from file descriptor");
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001132 std::string error_msg;
1133 UniquePtr<ZipArchive> zip_archive(ZipArchive::OpenFromFd(zip_fd, zip_location.c_str(),
1134 &error_msg));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001135 if (zip_archive.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001136 LOG(ERROR) << "Failed to open zip from file descriptor for '" << zip_location << "': "
1137 << error_msg;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001138 return EXIT_FAILURE;
1139 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001140 const DexFile* dex_file = DexFile::Open(*zip_archive.get(), zip_location, &error_msg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001141 if (dex_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001142 LOG(ERROR) << "Failed to open dex from file descriptor for zip file '" << zip_location
1143 << "': " << error_msg;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001144 return EXIT_FAILURE;
1145 }
1146 dex_files.push_back(dex_file);
Ian Rogers740a11d2014-01-14 10:11:25 -08001147 ATRACE_END();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001148 } else {
Brian Carlstrom3cf59d52013-11-10 21:04:10 -08001149 size_t failure_count = OpenDexFiles(dex_filenames, dex_locations, dex_files);
1150 if (failure_count > 0) {
1151 LOG(ERROR) << "Failed to open some dex files: " << failure_count;
1152 return EXIT_FAILURE;
1153 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001154 }
Brian Carlstromd76e0832013-08-29 15:17:42 -07001155
Brian Carlstromf79fccb2014-02-20 08:55:10 -08001156 const bool kSaveDexInput = false;
1157 if (kSaveDexInput) {
1158 for (size_t i = 0; i < dex_files.size(); ++i) {
1159 const DexFile* dex_file = dex_files[i];
Ian Rogers5180cc12014-02-21 13:34:16 -08001160 std::string tmp_file_name(StringPrintf("/data/local/tmp/dex2oat.%d.%zd.dex", getpid(), i));
Brian Carlstromf79fccb2014-02-20 08:55:10 -08001161 UniquePtr<File> tmp_file(OS::CreateEmptyFile(tmp_file_name.c_str()));
1162 if (tmp_file.get() == nullptr) {
Brian Carlstrom6449c622014-02-10 23:48:36 -08001163 PLOG(ERROR) << "Failed to open file " << tmp_file_name
1164 << ". Try: adb shell chmod 777 /data/local/tmp";
Brian Carlstromf79fccb2014-02-20 08:55:10 -08001165 continue;
1166 }
1167 tmp_file->WriteFully(dex_file->Begin(), dex_file->Size());
1168 LOG(INFO) << "Wrote input to " << tmp_file_name;
1169 }
1170 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001171 }
1172 // Ensure opened dex files are writable for dex-to-dex transformations.
1173 for (const auto& dex_file : dex_files) {
1174 if (!dex_file->EnableWrite()) {
1175 PLOG(ERROR) << "Failed to make .dex file writeable '" << dex_file->GetLocation() << "'\n";
Brian Carlstromd76e0832013-08-29 15:17:42 -07001176 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001177 }
1178
buzbeea024a062013-07-31 10:47:37 -07001179 /*
1180 * If we're not in interpret-only mode, go ahead and compile small applications. Don't
1181 * bother to check if we're doing the image.
1182 */
Brian Carlstrom6449c622014-02-10 23:48:36 -08001183 if (!image && (compiler_options.GetCompilerFilter() != CompilerOptions::kInterpretOnly)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001184 size_t num_methods = 0;
1185 for (size_t i = 0; i != dex_files.size(); ++i) {
1186 const DexFile* dex_file = dex_files[i];
1187 CHECK(dex_file != NULL);
1188 num_methods += dex_file->NumMethodIds();
1189 }
Brian Carlstrom6449c622014-02-10 23:48:36 -08001190 if (num_methods <= compiler_options.GetNumDexMethodsThreshold()) {
1191 compiler_options.SetCompilerFilter(CompilerOptions::kSpeed);
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07001192 VLOG(compiler) << "Below method threshold, compiling anyways";
Brian Carlstrom7940e442013-07-12 13:46:57 -07001193 }
1194 }
1195
1196 UniquePtr<const CompilerDriver> compiler(dex2oat->CreateOatFile(boot_image_option,
Brian Carlstrom7940e442013-07-12 13:46:57 -07001197 android_root,
1198 is_host,
1199 dex_files,
1200 oat_file.get(),
1201 bitcode_filename,
1202 image,
1203 image_classes,
1204 dump_stats,
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +00001205 dump_passes,
1206 timings,
1207 compiler_phases_timings));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001208
1209 if (compiler.get() == NULL) {
1210 LOG(ERROR) << "Failed to create oat file: " << oat_location;
1211 return EXIT_FAILURE;
1212 }
1213
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07001214 VLOG(compiler) << "Oat file written successfully (unstripped): " << oat_location;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001215
1216 // Notes on the interleaving of creating the image and oat file to
1217 // ensure the references between the two are correct.
1218 //
1219 // Currently we have a memory layout that looks something like this:
1220 //
1221 // +--------------+
1222 // | image |
1223 // +--------------+
1224 // | boot oat |
1225 // +--------------+
1226 // | alloc spaces |
1227 // +--------------+
1228 //
Brian Carlstrom45602482013-07-21 22:07:55 -07001229 // There are several constraints on the loading of the image and boot.oat.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001230 //
1231 // 1. The image is expected to be loaded at an absolute address and
1232 // contains Objects with absolute pointers within the image.
1233 //
1234 // 2. There are absolute pointers from Methods in the image to their
1235 // code in the oat.
1236 //
1237 // 3. There are absolute pointers from the code in the oat to Methods
1238 // in the image.
1239 //
1240 // 4. There are absolute pointers from code in the oat to other code
1241 // in the oat.
1242 //
1243 // To get this all correct, we go through several steps.
1244 //
1245 // 1. We have already created that oat file above with
1246 // CreateOatFile. Originally this was just our own proprietary file
Brian Carlstrom45602482013-07-21 22:07:55 -07001247 // but now it is contained within an ELF dynamic object (aka an .so
Brian Carlstrom7940e442013-07-12 13:46:57 -07001248 // file). The Compiler returned by CreateOatFile provides
1249 // PatchInformation for references to oat code and Methods that need
1250 // to be update once we know where the oat file will be located
1251 // after the image.
1252 //
1253 // 2. We create the image file. It needs to know where the oat file
1254 // will be loaded after itself. Originally when oat file was simply
1255 // memory mapped so we could predict where its contents were based
1256 // on the file size. Now that it is an ELF file, we need to inspect
1257 // the ELF file to understand the in memory segment layout including
1258 // where the oat header is located within. ImageWriter's
1259 // PatchOatCodeAndMethods uses the PatchInformation from the
1260 // Compiler to touch up absolute references in the oat file.
1261 //
1262 // 3. We fixup the ELF program headers so that dlopen will try to
1263 // load the .so at the desired location at runtime by offsetting the
1264 // Elf32_Phdr.p_vaddr values by the desired base address.
1265 //
1266 if (image) {
Anwar Ghuloum6f28d912013-07-24 15:02:53 -07001267 timings.NewSplit("dex2oat ImageWriter");
Brian Carlstrom7940e442013-07-12 13:46:57 -07001268 bool image_creation_success = dex2oat->CreateImageFile(image_filename,
1269 image_base,
1270 oat_unstripped,
1271 oat_location,
1272 *compiler.get());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001273 if (!image_creation_success) {
1274 return EXIT_FAILURE;
1275 }
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07001276 VLOG(compiler) << "Image written successfully: " << image_filename;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001277 }
1278
1279 if (is_host) {
Ian Rogers46398602013-08-20 07:50:36 -07001280 if (dump_timing || (dump_slow_timing && timings.GetTotalNs() > MsToNs(1000))) {
Ian Rogers5fe9af72013-11-14 00:17:20 -08001281 LOG(INFO) << Dumpable<TimingLogger>(timings);
Brian Carlstrom45602482013-07-21 22:07:55 -07001282 }
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +00001283 if (dump_passes) {
Ian Rogers3d504072014-03-01 09:16:49 -08001284 LOG(INFO) << Dumpable<CumulativeLogger>(*compiler.get()->GetTimingsLogger());
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +00001285 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001286 return EXIT_SUCCESS;
1287 }
1288
1289 // If we don't want to strip in place, copy from unstripped location to stripped location.
1290 // We need to strip after image creation because FixupElf needs to use .strtab.
1291 if (oat_unstripped != oat_stripped) {
Anwar Ghuloum6f28d912013-07-24 15:02:53 -07001292 timings.NewSplit("dex2oat OatFile copy");
Brian Carlstrom7940e442013-07-12 13:46:57 -07001293 oat_file.reset();
Brian Carlstrom7571e8b2013-08-12 17:04:14 -07001294 UniquePtr<File> in(OS::OpenFileForReading(oat_unstripped.c_str()));
1295 UniquePtr<File> out(OS::CreateEmptyFile(oat_stripped.c_str()));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001296 size_t buffer_size = 8192;
1297 UniquePtr<uint8_t> buffer(new uint8_t[buffer_size]);
1298 while (true) {
1299 int bytes_read = TEMP_FAILURE_RETRY(read(in->Fd(), buffer.get(), buffer_size));
1300 if (bytes_read <= 0) {
1301 break;
1302 }
1303 bool write_ok = out->WriteFully(buffer.get(), bytes_read);
1304 CHECK(write_ok);
1305 }
1306 oat_file.reset(out.release());
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07001307 VLOG(compiler) << "Oat file copied successfully (stripped): " << oat_stripped;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001308 }
1309
Brian Carlstrom7fcba112013-07-22 10:28:48 -07001310#if ART_USE_PORTABLE_COMPILER // We currently only generate symbols on Portable
Anwar Ghuloum6f28d912013-07-24 15:02:53 -07001311 timings.NewSplit("dex2oat ElfStripper");
Brian Carlstrom7940e442013-07-12 13:46:57 -07001312 // Strip unneeded sections for target
1313 off_t seek_actual = lseek(oat_file->Fd(), 0, SEEK_SET);
1314 CHECK_EQ(0, seek_actual);
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001315 std::string error_msg;
1316 CHECK(ElfStripper::Strip(oat_file.get(), &error_msg)) << error_msg;
Anwar Ghuloum6f28d912013-07-24 15:02:53 -07001317
Brian Carlstrom7940e442013-07-12 13:46:57 -07001318
1319 // We wrote the oat file successfully, and want to keep it.
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07001320 VLOG(compiler) << "Oat file written successfully (stripped): " << oat_location;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001321#endif // ART_USE_PORTABLE_COMPILER
Brian Carlstrom45602482013-07-21 22:07:55 -07001322
Anwar Ghuloum6f28d912013-07-24 15:02:53 -07001323 timings.EndSplit();
1324
Brian Carlstromc6dfdac2013-08-26 18:57:31 -07001325 if (dump_timing || (dump_slow_timing && timings.GetTotalNs() > MsToNs(1000))) {
Ian Rogers5fe9af72013-11-14 00:17:20 -08001326 LOG(INFO) << Dumpable<TimingLogger>(timings);
Brian Carlstrom45602482013-07-21 22:07:55 -07001327 }
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +00001328 if (dump_passes) {
1329 LOG(INFO) << Dumpable<CumulativeLogger>(compiler_phases_timings);
1330 }
Ian Rogers2672a9f2013-09-05 17:24:22 -07001331
1332 // Everything was successfully written, do an explicit exit here to avoid running Runtime
1333 // destructors that take time (bug 10645725) unless we're a debug build or running on valgrind.
Brian Carlstrom6449c622014-02-10 23:48:36 -08001334 if (!kIsDebugBuild && (RUNNING_ON_VALGRIND == 0)) {
Brian Carlstrom65c23bb2014-02-01 22:12:39 -08001335 dex2oat->LogCompletionTime();
Ian Rogers2672a9f2013-09-05 17:24:22 -07001336 exit(EXIT_SUCCESS);
1337 }
1338
Brian Carlstrom7940e442013-07-12 13:46:57 -07001339 return EXIT_SUCCESS;
Brian Carlstrom6449c622014-02-10 23:48:36 -08001340} // NOLINT(readability/fn_size)
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001341} // namespace art
Brian Carlstrom7940e442013-07-12 13:46:57 -07001342
1343int main(int argc, char** argv) {
1344 return art::dex2oat(argc, argv);
1345}