Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1 | /* |
| 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 Rogers | 2672a9f | 2013-09-05 17:24:22 -0700 | [diff] [blame] | 20 | #include <valgrind.h> |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 21 | |
| 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 Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame^] | 33 | #include "compiler.h" |
Vladimir Marko | 2b5eaa2 | 2013-12-13 13:59:30 +0000 | [diff] [blame] | 34 | #include "compiler_callbacks.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 35 | #include "dex_file-inl.h" |
Vladimir Marko | c7f8320 | 2014-01-24 17:55:18 +0000 | [diff] [blame] | 36 | #include "dex/verification_results.h" |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 37 | #include "driver/compiler_callbacks_impl.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 38 | #include "driver/compiler_driver.h" |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 39 | #include "driver/compiler_options.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 40 | #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 Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 46 | #include "mirror/art_method-inl.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 47 | #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 Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 57 | #include "vector_output_stream.h" |
| 58 | #include "well_known_classes.h" |
| 59 | #include "zip_archive.h" |
| 60 | |
| 61 | namespace art { |
| 62 | |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 63 | static int original_argc; |
| 64 | static char** original_argv; |
| 65 | |
| 66 | static 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 Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 74 | static void UsageErrorV(const char* fmt, va_list ap) { |
| 75 | std::string error; |
| 76 | StringAppendV(&error, fmt, ap); |
| 77 | LOG(ERROR) << error; |
| 78 | } |
| 79 | |
| 80 | static void UsageError(const char* fmt, ...) { |
| 81 | va_list ap; |
| 82 | va_start(ap, fmt); |
| 83 | UsageErrorV(fmt, ap); |
| 84 | va_end(ap); |
| 85 | } |
| 86 | |
| 87 | static void Usage(const char* fmt, ...) { |
| 88 | va_list ap; |
| 89 | va_start(ap, fmt); |
| 90 | UsageErrorV(fmt, ap); |
| 91 | va_end(ap); |
| 92 | |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 93 | UsageError("Command: %s", CommandLine().c_str()); |
| 94 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 95 | 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 Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 104 | UsageError(" --zip-location=<zip-location>: specifies a symbolic name for the file"); |
| 105 | UsageError(" corresponding to the file descriptor specified by --zip-fd."); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 106 | 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 Geoffray | 9583fbc | 2014-02-28 15:21:07 +0000 | [diff] [blame] | 135 | UsageError(" Default: $ANDROID_ROOT/system/framework/boot.art"); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 136 | 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 Rogers | befbd57 | 2014-03-06 01:13:39 -0800 | [diff] [blame] | 141 | UsageError(" --instruction-set=(arm|mips|x86|x86_64): compile for a particular instruction"); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 142 | UsageError(" set."); |
| 143 | UsageError(" Example: --instruction-set=x86"); |
| 144 | UsageError(" Default: arm"); |
| 145 | UsageError(""); |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 146 | UsageError(" --instruction-set-features=...,: Specify instruction set features"); |
| 147 | UsageError(" Example: --instruction-set-features=div"); |
| 148 | UsageError(" Default: default"); |
| 149 | UsageError(""); |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame^] | 150 | UsageError(" --compiler-backend=(Quick|Optimizing|Portable): select compiler backend"); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 151 | UsageError(" set."); |
Brian Carlstrom | 635733d | 2013-10-30 23:19:31 -0700 | [diff] [blame] | 152 | UsageError(" Example: --compiler-backend=Portable"); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 153 | UsageError(" Default: Quick"); |
| 154 | UsageError(""); |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 155 | 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 Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 195 | UsageError(" --host: used with Portable backend to link against host runtime libraries"); |
| 196 | UsageError(""); |
Ian Rogers | 4639860 | 2013-08-20 07:50:36 -0700 | [diff] [blame] | 197 | UsageError(" --dump-timing: display a breakdown of where time was spent"); |
| 198 | UsageError(""); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 199 | 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"); |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 203 | UsageError(""); |
| 204 | UsageError(" --profile-file=<filename>: specify profiler output file to use for compilation."); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 205 | UsageError(""); |
| 206 | std::cerr << "See log for usage error information\n"; |
| 207 | exit(EXIT_FAILURE); |
| 208 | } |
| 209 | |
| 210 | class Dex2Oat { |
| 211 | public: |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 212 | static bool Create(Dex2Oat** p_dex2oat, |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 213 | const Runtime::Options& runtime_options, |
| 214 | const CompilerOptions& compiler_options, |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame^] | 215 | Compiler::Kind compiler_kind, |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 216 | InstructionSet instruction_set, |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 217 | InstructionSetFeatures instruction_set_features, |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 218 | VerificationResults* verification_results, |
| 219 | DexFileToMethodInlinerMap* method_inliner_map, |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 220 | size_t thread_count) |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 221 | SHARED_TRYLOCK_FUNCTION(true, Locks::mutator_lock_) { |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 222 | CHECK(verification_results != nullptr); |
| 223 | CHECK(method_inliner_map != nullptr); |
| 224 | UniquePtr<Dex2Oat> dex2oat(new Dex2Oat(&compiler_options, |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame^] | 225 | compiler_kind, |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 226 | instruction_set, |
| 227 | instruction_set_features, |
| 228 | verification_results, |
| 229 | method_inliner_map, |
| 230 | thread_count)); |
| 231 | if (!dex2oat->CreateRuntime(runtime_options, instruction_set)) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 232 | *p_dex2oat = NULL; |
| 233 | return false; |
| 234 | } |
Vladimir Marko | 2b5eaa2 | 2013-12-13 13:59:30 +0000 | [diff] [blame] | 235 | *p_dex2oat = dex2oat.release(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 236 | return true; |
| 237 | } |
| 238 | |
| 239 | ~Dex2Oat() { |
| 240 | delete runtime_; |
Brian Carlstrom | 65c23bb | 2014-02-01 22:12:39 -0800 | [diff] [blame] | 241 | LogCompletionTime(); |
| 242 | } |
| 243 | |
| 244 | void LogCompletionTime() { |
| 245 | LOG(INFO) << "dex2oat took " << PrettyDuration(NanoTime() - start_ns_) |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 246 | << " (threads: " << thread_count_ << ")"; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 250 | // Reads the class names (java.lang.Object) and returns a set of descriptors (Ljava/lang/Object;) |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 251 | CompilerDriver::DescriptorSet* ReadImageClassesFromFile(const char* image_classes_filename) { |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 252 | UniquePtr<std::ifstream> image_classes_file(new std::ifstream(image_classes_filename, |
| 253 | std::ifstream::in)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 254 | if (image_classes_file.get() == NULL) { |
| 255 | LOG(ERROR) << "Failed to open image classes file " << image_classes_filename; |
| 256 | return NULL; |
| 257 | } |
| 258 | UniquePtr<CompilerDriver::DescriptorSet> result(ReadImageClasses(*image_classes_file.get())); |
| 259 | image_classes_file->close(); |
| 260 | return result.release(); |
| 261 | } |
| 262 | |
| 263 | CompilerDriver::DescriptorSet* ReadImageClasses(std::istream& image_classes_stream) { |
| 264 | UniquePtr<CompilerDriver::DescriptorSet> image_classes(new CompilerDriver::DescriptorSet); |
| 265 | while (image_classes_stream.good()) { |
| 266 | std::string dot; |
| 267 | std::getline(image_classes_stream, dot); |
| 268 | if (StartsWith(dot, "#") || dot.empty()) { |
| 269 | continue; |
| 270 | } |
| 271 | std::string descriptor(DotToDescriptor(dot.c_str())); |
| 272 | image_classes->insert(descriptor); |
| 273 | } |
| 274 | return image_classes.release(); |
| 275 | } |
| 276 | |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 277 | // Reads the class names (java.lang.Object) and returns a set of descriptors (Ljava/lang/Object;) |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 278 | CompilerDriver::DescriptorSet* ReadImageClassesFromZip(const char* zip_filename, |
| 279 | const char* image_classes_filename, |
| 280 | std::string* error_msg) { |
| 281 | UniquePtr<ZipArchive> zip_archive(ZipArchive::Open(zip_filename, error_msg)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 282 | if (zip_archive.get() == NULL) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 283 | return NULL; |
| 284 | } |
Narayan Kamath | 92572be | 2013-11-28 14:06:24 +0000 | [diff] [blame] | 285 | UniquePtr<ZipEntry> zip_entry(zip_archive->Find(image_classes_filename, error_msg)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 286 | if (zip_entry.get() == NULL) { |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 287 | *error_msg = StringPrintf("Failed to find '%s' within '%s': %s", image_classes_filename, |
| 288 | zip_filename, error_msg->c_str()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 289 | return NULL; |
| 290 | } |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 291 | UniquePtr<MemMap> image_classes_file(zip_entry->ExtractToMemMap(image_classes_filename, |
| 292 | error_msg)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 293 | if (image_classes_file.get() == NULL) { |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 294 | *error_msg = StringPrintf("Failed to extract '%s' from '%s': %s", image_classes_filename, |
| 295 | zip_filename, error_msg->c_str()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 296 | return NULL; |
| 297 | } |
| 298 | const std::string image_classes_string(reinterpret_cast<char*>(image_classes_file->Begin()), |
| 299 | image_classes_file->Size()); |
| 300 | std::istringstream image_classes_stream(image_classes_string); |
| 301 | return ReadImageClasses(image_classes_stream); |
| 302 | } |
| 303 | |
| 304 | const CompilerDriver* CreateOatFile(const std::string& boot_image_option, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 305 | const std::string& android_root, |
| 306 | bool is_host, |
| 307 | const std::vector<const DexFile*>& dex_files, |
| 308 | File* oat_file, |
| 309 | const std::string& bitcode_filename, |
| 310 | bool image, |
| 311 | UniquePtr<CompilerDriver::DescriptorSet>& image_classes, |
| 312 | bool dump_stats, |
Nicolas Geoffray | ea3fa0b | 2014-02-10 11:59:41 +0000 | [diff] [blame] | 313 | bool dump_passes, |
| 314 | TimingLogger& timings, |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 315 | CumulativeLogger& compiler_phases_timings, |
| 316 | std::string profile_file) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 317 | // SirtRef and ClassLoader creation needs to come after Runtime::Create |
| 318 | jobject class_loader = NULL; |
Ian Rogers | 3f3d22c | 2013-08-27 18:11:09 -0700 | [diff] [blame] | 319 | Thread* self = Thread::Current(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 320 | if (!boot_image_option.empty()) { |
| 321 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| 322 | std::vector<const DexFile*> class_path_files(dex_files); |
| 323 | OpenClassPathFiles(runtime_->GetClassPathString(), class_path_files); |
Ian Rogers | 3f3d22c | 2013-08-27 18:11:09 -0700 | [diff] [blame] | 324 | ScopedObjectAccess soa(self); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 325 | for (size_t i = 0; i < class_path_files.size(); i++) { |
| 326 | class_linker->RegisterDexFile(*class_path_files[i]); |
| 327 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 328 | soa.Env()->AllocObject(WellKnownClasses::dalvik_system_PathClassLoader); |
| 329 | ScopedLocalRef<jobject> class_loader_local(soa.Env(), |
| 330 | soa.Env()->AllocObject(WellKnownClasses::dalvik_system_PathClassLoader)); |
| 331 | class_loader = soa.Env()->NewGlobalRef(class_loader_local.get()); |
| 332 | Runtime::Current()->SetCompileTimeClassPath(class_loader, class_path_files); |
| 333 | } |
| 334 | |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 335 | UniquePtr<CompilerDriver> driver(new CompilerDriver(compiler_options_, |
| 336 | verification_results_, |
| 337 | method_inliner_map_, |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame^] | 338 | compiler_kind_, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 339 | instruction_set_, |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 340 | instruction_set_features_, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 341 | image, |
| 342 | image_classes.release(), |
| 343 | thread_count_, |
Nicolas Geoffray | ea3fa0b | 2014-02-10 11:59:41 +0000 | [diff] [blame] | 344 | dump_stats, |
| 345 | dump_passes, |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 346 | &compiler_phases_timings, |
| 347 | profile_file)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 348 | |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame^] | 349 | driver->GetCompiler()->SetBitcodeFileName(*driver.get(), bitcode_filename); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 350 | |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 351 | driver->CompileAll(class_loader, dex_files, &timings); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 352 | |
Anwar Ghuloum | 6f28d91 | 2013-07-24 15:02:53 -0700 | [diff] [blame] | 353 | timings.NewSplit("dex2oat OatWriter"); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 354 | std::string image_file_location; |
| 355 | uint32_t image_file_location_oat_checksum = 0; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 356 | uintptr_t image_file_location_oat_data_begin = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 357 | if (!driver->IsImage()) { |
Ian Rogers | ca368cb | 2013-11-15 15:52:08 -0800 | [diff] [blame] | 358 | TimingLogger::ScopedSplit split("Loading image checksum", &timings); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 359 | gc::space::ImageSpace* image_space = Runtime::Current()->GetHeap()->GetImageSpace(); |
| 360 | image_file_location_oat_checksum = image_space->GetImageHeader().GetOatChecksum(); |
| 361 | image_file_location_oat_data_begin = |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 362 | reinterpret_cast<uintptr_t>(image_space->GetImageHeader().GetOatDataBegin()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 363 | image_file_location = image_space->GetImageFilename(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 364 | } |
| 365 | |
Brian Carlstrom | c50d8e1 | 2013-07-23 22:35:16 -0700 | [diff] [blame] | 366 | OatWriter oat_writer(dex_files, |
| 367 | image_file_location_oat_checksum, |
| 368 | image_file_location_oat_data_begin, |
| 369 | image_file_location, |
Ian Rogers | ca368cb | 2013-11-15 15:52:08 -0800 | [diff] [blame] | 370 | driver.get(), |
| 371 | &timings); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 372 | |
Ian Rogers | ca368cb | 2013-11-15 15:52:08 -0800 | [diff] [blame] | 373 | TimingLogger::ScopedSplit split("Writing ELF", &timings); |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 374 | if (!driver->WriteElf(android_root, is_host, dex_files, &oat_writer, oat_file)) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 375 | LOG(ERROR) << "Failed to write ELF file " << oat_file->GetPath(); |
| 376 | return NULL; |
| 377 | } |
| 378 | |
| 379 | return driver.release(); |
| 380 | } |
| 381 | |
| 382 | bool CreateImageFile(const std::string& image_filename, |
| 383 | uintptr_t image_base, |
| 384 | const std::string& oat_filename, |
| 385 | const std::string& oat_location, |
| 386 | const CompilerDriver& compiler) |
| 387 | LOCKS_EXCLUDED(Locks::mutator_lock_) { |
| 388 | uintptr_t oat_data_begin; |
| 389 | { |
| 390 | // ImageWriter is scoped so it can free memory before doing FixupElf |
| 391 | ImageWriter image_writer(compiler); |
| 392 | if (!image_writer.Write(image_filename, image_base, oat_filename, oat_location)) { |
| 393 | LOG(ERROR) << "Failed to create image file " << image_filename; |
| 394 | return false; |
| 395 | } |
| 396 | oat_data_begin = image_writer.GetOatDataBegin(); |
| 397 | } |
| 398 | |
Brian Carlstrom | 7571e8b | 2013-08-12 17:04:14 -0700 | [diff] [blame] | 399 | UniquePtr<File> oat_file(OS::OpenFileReadWrite(oat_filename.c_str())); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 400 | if (oat_file.get() == NULL) { |
| 401 | PLOG(ERROR) << "Failed to open ELF file: " << oat_filename; |
| 402 | return false; |
| 403 | } |
| 404 | if (!ElfFixup::Fixup(oat_file.get(), oat_data_begin)) { |
| 405 | LOG(ERROR) << "Failed to fixup ELF file " << oat_file->GetPath(); |
| 406 | return false; |
| 407 | } |
| 408 | return true; |
| 409 | } |
| 410 | |
| 411 | private: |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 412 | explicit Dex2Oat(const CompilerOptions* compiler_options, |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame^] | 413 | Compiler::Kind compiler_kind, |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 414 | InstructionSet instruction_set, |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 415 | InstructionSetFeatures instruction_set_features, |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 416 | VerificationResults* verification_results, |
| 417 | DexFileToMethodInlinerMap* method_inliner_map, |
Brian Carlstrom | 0177fe2 | 2013-07-21 12:21:36 -0700 | [diff] [blame] | 418 | size_t thread_count) |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 419 | : compiler_options_(compiler_options), |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame^] | 420 | compiler_kind_(compiler_kind), |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 421 | instruction_set_(instruction_set), |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 422 | instruction_set_features_(instruction_set_features), |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 423 | verification_results_(verification_results), |
| 424 | method_inliner_map_(method_inliner_map), |
Vladimir Marko | 2b5eaa2 | 2013-12-13 13:59:30 +0000 | [diff] [blame] | 425 | runtime_(nullptr), |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 426 | thread_count_(thread_count), |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 427 | start_ns_(NanoTime()) { |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 428 | CHECK(compiler_options != nullptr); |
| 429 | CHECK(verification_results != nullptr); |
| 430 | CHECK(method_inliner_map != nullptr); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 431 | } |
| 432 | |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 433 | bool CreateRuntime(const Runtime::Options& runtime_options, InstructionSet instruction_set) |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 434 | SHARED_TRYLOCK_FUNCTION(true, Locks::mutator_lock_) { |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 435 | if (!Runtime::Create(runtime_options, false)) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 436 | LOG(ERROR) << "Failed to create runtime"; |
| 437 | return false; |
| 438 | } |
| 439 | Runtime* runtime = Runtime::Current(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 440 | for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) { |
| 441 | Runtime::CalleeSaveType type = Runtime::CalleeSaveType(i); |
| 442 | if (!runtime->HasCalleeSaveMethod(type)) { |
| 443 | runtime->SetCalleeSaveMethod(runtime->CreateCalleeSaveMethod(instruction_set, type), type); |
| 444 | } |
| 445 | } |
| 446 | runtime->GetClassLinker()->FixupDexCaches(runtime->GetResolutionMethod()); |
Vladimir Marko | 2b5eaa2 | 2013-12-13 13:59:30 +0000 | [diff] [blame] | 447 | runtime_ = runtime; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 448 | return true; |
| 449 | } |
| 450 | |
| 451 | // Appends to dex_files any elements of class_path that it doesn't already |
| 452 | // contain. This will open those dex files as necessary. |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 453 | static void OpenClassPathFiles(const std::string& class_path, |
| 454 | std::vector<const DexFile*>& dex_files) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 455 | std::vector<std::string> parsed; |
| 456 | Split(class_path, ':', parsed); |
| 457 | // Take Locks::mutator_lock_ so that lock ordering on the ClassLinker::dex_lock_ is maintained. |
| 458 | ScopedObjectAccess soa(Thread::Current()); |
| 459 | for (size_t i = 0; i < parsed.size(); ++i) { |
| 460 | if (DexFilesContains(dex_files, parsed[i])) { |
| 461 | continue; |
| 462 | } |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 463 | std::string error_msg; |
| 464 | const DexFile* dex_file = DexFile::Open(parsed[i].c_str(), parsed[i].c_str(), &error_msg); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 465 | if (dex_file == NULL) { |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 466 | LOG(WARNING) << "Failed to open dex file '" << parsed[i] << "': " << error_msg; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 467 | } else { |
| 468 | dex_files.push_back(dex_file); |
| 469 | } |
| 470 | } |
| 471 | } |
| 472 | |
| 473 | // Returns true if dex_files has a dex with the named location. |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 474 | static bool DexFilesContains(const std::vector<const DexFile*>& dex_files, |
| 475 | const std::string& location) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 476 | for (size_t i = 0; i < dex_files.size(); ++i) { |
| 477 | if (dex_files[i]->GetLocation() == location) { |
| 478 | return true; |
| 479 | } |
| 480 | } |
| 481 | return false; |
| 482 | } |
| 483 | |
Brian Carlstrom | ae7083d | 2014-02-24 21:56:02 -0800 | [diff] [blame] | 484 | const CompilerOptions* const compiler_options_; |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame^] | 485 | const Compiler::Kind compiler_kind_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 486 | |
| 487 | const InstructionSet instruction_set_; |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 488 | const InstructionSetFeatures instruction_set_features_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 489 | |
Brian Carlstrom | ae7083d | 2014-02-24 21:56:02 -0800 | [diff] [blame] | 490 | VerificationResults* const verification_results_; |
| 491 | DexFileToMethodInlinerMap* const method_inliner_map_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 492 | Runtime* runtime_; |
| 493 | size_t thread_count_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 494 | uint64_t start_ns_; |
| 495 | |
| 496 | DISALLOW_IMPLICIT_CONSTRUCTORS(Dex2Oat); |
| 497 | }; |
| 498 | |
| 499 | static bool ParseInt(const char* in, int* out) { |
| 500 | char* end; |
| 501 | int result = strtol(in, &end, 10); |
| 502 | if (in == end || *end != '\0') { |
| 503 | return false; |
| 504 | } |
| 505 | *out = result; |
| 506 | return true; |
| 507 | } |
| 508 | |
Brian Carlstrom | 3cf59d5 | 2013-11-10 21:04:10 -0800 | [diff] [blame] | 509 | static size_t OpenDexFiles(const std::vector<const char*>& dex_filenames, |
| 510 | const std::vector<const char*>& dex_locations, |
| 511 | std::vector<const DexFile*>& dex_files) { |
| 512 | size_t failure_count = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 513 | for (size_t i = 0; i < dex_filenames.size(); i++) { |
| 514 | const char* dex_filename = dex_filenames[i]; |
| 515 | const char* dex_location = dex_locations[i]; |
Ian Rogers | 740a11d | 2014-01-14 10:11:25 -0800 | [diff] [blame] | 516 | ATRACE_BEGIN(StringPrintf("Opening dex file '%s'", dex_filenames[i]).c_str()); |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 517 | std::string error_msg; |
Brian Carlstrom | d5aba59 | 2013-11-12 01:52:44 -0800 | [diff] [blame] | 518 | if (!OS::FileExists(dex_filename)) { |
| 519 | LOG(WARNING) << "Skipping non-existent dex file '" << dex_filename << "'"; |
| 520 | continue; |
| 521 | } |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 522 | const DexFile* dex_file = DexFile::Open(dex_filename, dex_location, &error_msg); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 523 | if (dex_file == NULL) { |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 524 | LOG(WARNING) << "Failed to open .dex from file '" << dex_filename << "': " << error_msg; |
Brian Carlstrom | 3cf59d5 | 2013-11-10 21:04:10 -0800 | [diff] [blame] | 525 | ++failure_count; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 526 | } else { |
| 527 | dex_files.push_back(dex_file); |
| 528 | } |
Ian Rogers | 740a11d | 2014-01-14 10:11:25 -0800 | [diff] [blame] | 529 | ATRACE_END(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 530 | } |
Brian Carlstrom | 3cf59d5 | 2013-11-10 21:04:10 -0800 | [diff] [blame] | 531 | return failure_count; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | // The primary goal of the watchdog is to prevent stuck build servers |
| 535 | // during development when fatal aborts lead to a cascade of failures |
| 536 | // that result in a deadlock. |
| 537 | class WatchDog { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 538 | // WatchDog defines its own CHECK_PTHREAD_CALL to avoid using Log which uses locks |
| 539 | #undef CHECK_PTHREAD_CALL |
| 540 | #define CHECK_WATCH_DOG_PTHREAD_CALL(call, args, what) \ |
| 541 | do { \ |
| 542 | int rc = call args; \ |
| 543 | if (rc != 0) { \ |
| 544 | errno = rc; \ |
| 545 | std::string message(# call); \ |
| 546 | message += " failed for "; \ |
| 547 | message += reason; \ |
| 548 | Fatal(message); \ |
| 549 | } \ |
| 550 | } while (false) |
| 551 | |
| 552 | public: |
Brian Carlstrom | 93ba893 | 2013-07-17 21:31:49 -0700 | [diff] [blame] | 553 | explicit WatchDog(bool is_watch_dog_enabled) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 554 | is_watch_dog_enabled_ = is_watch_dog_enabled; |
| 555 | if (!is_watch_dog_enabled_) { |
| 556 | return; |
| 557 | } |
| 558 | shutting_down_ = false; |
| 559 | const char* reason = "dex2oat watch dog thread startup"; |
| 560 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_init, (&mutex_, NULL), reason); |
| 561 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_init, (&cond_, NULL), reason); |
| 562 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_init, (&attr_), reason); |
| 563 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason); |
| 564 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_destroy, (&attr_), reason); |
| 565 | } |
| 566 | ~WatchDog() { |
| 567 | if (!is_watch_dog_enabled_) { |
| 568 | return; |
| 569 | } |
| 570 | const char* reason = "dex2oat watch dog thread shutdown"; |
| 571 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason); |
| 572 | shutting_down_ = true; |
| 573 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_signal, (&cond_), reason); |
| 574 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_unlock, (&mutex_), reason); |
| 575 | |
| 576 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_join, (pthread_, NULL), reason); |
| 577 | |
| 578 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_destroy, (&cond_), reason); |
| 579 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_destroy, (&mutex_), reason); |
| 580 | } |
| 581 | |
| 582 | private: |
| 583 | static void* CallBack(void* arg) { |
| 584 | WatchDog* self = reinterpret_cast<WatchDog*>(arg); |
| 585 | ::art::SetThreadName("dex2oat watch dog"); |
| 586 | self->Wait(); |
| 587 | return NULL; |
| 588 | } |
| 589 | |
| 590 | static void Message(char severity, const std::string& message) { |
| 591 | // TODO: Remove when we switch to LOG when we can guarantee it won't prevent shutdown in error |
| 592 | // cases. |
| 593 | fprintf(stderr, "dex2oat%s %c %d %d %s\n", |
| 594 | kIsDebugBuild ? "d" : "", |
| 595 | severity, |
| 596 | getpid(), |
| 597 | GetTid(), |
| 598 | message.c_str()); |
| 599 | } |
| 600 | |
| 601 | static void Warn(const std::string& message) { |
| 602 | Message('W', message); |
| 603 | } |
| 604 | |
| 605 | static void Fatal(const std::string& message) { |
| 606 | Message('F', message); |
| 607 | exit(1); |
| 608 | } |
| 609 | |
| 610 | void Wait() { |
| 611 | bool warning = true; |
| 612 | CHECK_GT(kWatchDogTimeoutSeconds, kWatchDogWarningSeconds); |
| 613 | // TODO: tune the multiplier for GC verification, the following is just to make the timeout |
| 614 | // large. |
Mathieu Chartier | 4e30541 | 2014-02-19 10:54:44 -0800 | [diff] [blame] | 615 | int64_t multiplier = kVerifyObjectSupport > kVerifyObjectModeFast ? 100 : 1; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 616 | timespec warning_ts; |
| 617 | InitTimeSpec(true, CLOCK_REALTIME, multiplier * kWatchDogWarningSeconds * 1000, 0, &warning_ts); |
| 618 | timespec timeout_ts; |
| 619 | InitTimeSpec(true, CLOCK_REALTIME, multiplier * kWatchDogTimeoutSeconds * 1000, 0, &timeout_ts); |
| 620 | const char* reason = "dex2oat watch dog thread waiting"; |
| 621 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason); |
| 622 | while (!shutting_down_) { |
| 623 | int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_, |
| 624 | warning ? &warning_ts |
| 625 | : &timeout_ts)); |
| 626 | if (rc == ETIMEDOUT) { |
| 627 | std::string message(StringPrintf("dex2oat did not finish after %d seconds", |
| 628 | warning ? kWatchDogWarningSeconds |
| 629 | : kWatchDogTimeoutSeconds)); |
| 630 | if (warning) { |
| 631 | Warn(message.c_str()); |
| 632 | warning = false; |
| 633 | } else { |
| 634 | Fatal(message.c_str()); |
| 635 | } |
| 636 | } else if (rc != 0) { |
| 637 | std::string message(StringPrintf("pthread_cond_timedwait failed: %s", |
| 638 | strerror(errno))); |
| 639 | Fatal(message.c_str()); |
| 640 | } |
| 641 | } |
| 642 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_unlock, (&mutex_), reason); |
| 643 | } |
| 644 | |
| 645 | // When setting timeouts, keep in mind that the build server may not be as fast as your desktop. |
| 646 | #if ART_USE_PORTABLE_COMPILER |
| 647 | static const unsigned int kWatchDogWarningSeconds = 2 * 60; // 2 minutes. |
| 648 | static const unsigned int kWatchDogTimeoutSeconds = 30 * 60; // 25 minutes + buffer. |
| 649 | #else |
| 650 | static const unsigned int kWatchDogWarningSeconds = 1 * 60; // 1 minute. |
| 651 | static const unsigned int kWatchDogTimeoutSeconds = 6 * 60; // 5 minutes + buffer. |
| 652 | #endif |
| 653 | |
| 654 | bool is_watch_dog_enabled_; |
| 655 | bool shutting_down_; |
| 656 | // TODO: Switch to Mutex when we can guarantee it won't prevent shutdown in error cases. |
| 657 | pthread_mutex_t mutex_; |
| 658 | pthread_cond_t cond_; |
| 659 | pthread_attr_t attr_; |
| 660 | pthread_t pthread_; |
| 661 | }; |
| 662 | const unsigned int WatchDog::kWatchDogWarningSeconds; |
| 663 | const unsigned int WatchDog::kWatchDogTimeoutSeconds; |
| 664 | |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 665 | // Given a set of instruction features from the build, parse it. The |
| 666 | // input 'str' is a comma separated list of feature names. Parse it and |
| 667 | // return the InstructionSetFeatures object. |
| 668 | static InstructionSetFeatures ParseFeatureList(std::string str) { |
| 669 | InstructionSetFeatures result; |
| 670 | typedef std::vector<std::string> FeatureList; |
| 671 | FeatureList features; |
| 672 | Split(str, ',', features); |
| 673 | for (FeatureList::iterator i = features.begin(); i != features.end(); i++) { |
| 674 | std::string feature = Trim(*i); |
| 675 | if (feature == "default") { |
| 676 | // Nothing to do. |
| 677 | } else if (feature == "div") { |
| 678 | // Supports divide instruction. |
| 679 | result.SetHasDivideInstruction(true); |
| 680 | } else if (feature == "nodiv") { |
| 681 | // Turn off support for divide instruction. |
| 682 | result.SetHasDivideInstruction(false); |
| 683 | } else { |
| 684 | Usage("Unknown instruction set feature: '%s'", feature.c_str()); |
| 685 | } |
| 686 | } |
| 687 | // others... |
| 688 | return result; |
| 689 | } |
| 690 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 691 | static int dex2oat(int argc, char** argv) { |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 692 | original_argc = argc; |
| 693 | original_argv = argv; |
| 694 | |
Ian Rogers | 5fe9af7 | 2013-11-14 00:17:20 -0800 | [diff] [blame] | 695 | TimingLogger timings("compiler", false, false); |
Nicolas Geoffray | ea3fa0b | 2014-02-10 11:59:41 +0000 | [diff] [blame] | 696 | CumulativeLogger compiler_phases_timings("compilation times"); |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 697 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 698 | InitLogging(argv); |
| 699 | |
| 700 | // Skip over argv[0]. |
| 701 | argv++; |
| 702 | argc--; |
| 703 | |
| 704 | if (argc == 0) { |
Brian Carlstrom | e0948e1 | 2013-08-29 09:36:15 -0700 | [diff] [blame] | 705 | Usage("No arguments specified"); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 706 | } |
| 707 | |
| 708 | std::vector<const char*> dex_filenames; |
| 709 | std::vector<const char*> dex_locations; |
| 710 | int zip_fd = -1; |
| 711 | std::string zip_location; |
| 712 | std::string oat_filename; |
| 713 | std::string oat_symbols; |
| 714 | std::string oat_location; |
| 715 | int oat_fd = -1; |
| 716 | std::string bitcode_filename; |
| 717 | const char* image_classes_zip_filename = NULL; |
| 718 | const char* image_classes_filename = NULL; |
| 719 | std::string image_filename; |
| 720 | std::string boot_image_filename; |
| 721 | uintptr_t image_base = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 722 | std::string android_root; |
| 723 | std::vector<const char*> runtime_args; |
| 724 | int thread_count = sysconf(_SC_NPROCESSORS_CONF); |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame^] | 725 | Compiler::Kind compiler_kind = kUsePortableCompiler |
| 726 | ? Compiler::kPortable |
| 727 | : Compiler::kQuick; |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 728 | const char* compiler_filter_string = NULL; |
| 729 | int huge_method_threshold = CompilerOptions::kDefaultHugeMethodThreshold; |
| 730 | int large_method_threshold = CompilerOptions::kDefaultLargeMethodThreshold; |
| 731 | int small_method_threshold = CompilerOptions::kDefaultSmallMethodThreshold; |
| 732 | int tiny_method_threshold = CompilerOptions::kDefaultTinyMethodThreshold; |
| 733 | int num_dex_methods_threshold = CompilerOptions::kDefaultNumDexMethodsThreshold; |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 734 | |
Brian Carlstrom | 1bd2ceb | 2013-11-06 00:29:48 -0800 | [diff] [blame] | 735 | // Take the default set of instruction features from the build. |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 736 | InstructionSetFeatures instruction_set_features = |
Brian Carlstrom | 1bd2ceb | 2013-11-06 00:29:48 -0800 | [diff] [blame] | 737 | ParseFeatureList(STRINGIFY(ART_DEFAULT_INSTRUCTION_SET_FEATURES)); |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 738 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 739 | #if defined(__arm__) |
| 740 | InstructionSet instruction_set = kThumb2; |
Ian Rogers | ffb939a | 2014-03-12 11:51:02 -0700 | [diff] [blame] | 741 | #elif defined(__aarch64__) |
| 742 | InstructionSet instruction_set = kArm64; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 743 | #elif defined(__i386__) |
| 744 | InstructionSet instruction_set = kX86; |
Ian Rogers | ffb939a | 2014-03-12 11:51:02 -0700 | [diff] [blame] | 745 | #elif defined(__x86_64__) |
| 746 | InstructionSet instruction_set = kX86_64; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 747 | #elif defined(__mips__) |
| 748 | InstructionSet instruction_set = kMips; |
| 749 | #else |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 750 | InstructionSet instruction_set = kNone; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 751 | #endif |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 752 | |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 753 | // Profile file to use |
| 754 | std::string profile_file; |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 755 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 756 | bool is_host = false; |
Ian Rogers | e732ef1 | 2013-10-09 15:22:24 -0700 | [diff] [blame] | 757 | bool dump_stats = false; |
Ian Rogers | 4639860 | 2013-08-20 07:50:36 -0700 | [diff] [blame] | 758 | bool dump_timing = false; |
Nicolas Geoffray | ea3fa0b | 2014-02-10 11:59:41 +0000 | [diff] [blame] | 759 | bool dump_passes = false; |
Ian Rogers | 4639860 | 2013-08-20 07:50:36 -0700 | [diff] [blame] | 760 | bool dump_slow_timing = kIsDebugBuild; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 761 | bool watch_dog_enabled = !kIsTargetBuild; |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 762 | bool generate_gdb_information = kIsDebugBuild; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 763 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 764 | for (int i = 0; i < argc; i++) { |
| 765 | const StringPiece option(argv[i]); |
| 766 | bool log_options = false; |
| 767 | if (log_options) { |
| 768 | LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i]; |
| 769 | } |
| 770 | if (option.starts_with("--dex-file=")) { |
| 771 | dex_filenames.push_back(option.substr(strlen("--dex-file=")).data()); |
| 772 | } else if (option.starts_with("--dex-location=")) { |
| 773 | dex_locations.push_back(option.substr(strlen("--dex-location=")).data()); |
| 774 | } else if (option.starts_with("--zip-fd=")) { |
| 775 | const char* zip_fd_str = option.substr(strlen("--zip-fd=")).data(); |
| 776 | if (!ParseInt(zip_fd_str, &zip_fd)) { |
Brian Carlstrom | e0948e1 | 2013-08-29 09:36:15 -0700 | [diff] [blame] | 777 | Usage("Failed to parse --zip-fd argument '%s' as an integer", zip_fd_str); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 778 | } |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 779 | if (zip_fd < 0) { |
| 780 | Usage("--zip-fd passed a negative value %d", zip_fd); |
| 781 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 782 | } else if (option.starts_with("--zip-location=")) { |
| 783 | zip_location = option.substr(strlen("--zip-location=")).data(); |
| 784 | } else if (option.starts_with("--oat-file=")) { |
| 785 | oat_filename = option.substr(strlen("--oat-file=")).data(); |
| 786 | } else if (option.starts_with("--oat-symbols=")) { |
| 787 | oat_symbols = option.substr(strlen("--oat-symbols=")).data(); |
| 788 | } else if (option.starts_with("--oat-fd=")) { |
| 789 | const char* oat_fd_str = option.substr(strlen("--oat-fd=")).data(); |
| 790 | if (!ParseInt(oat_fd_str, &oat_fd)) { |
Brian Carlstrom | e0948e1 | 2013-08-29 09:36:15 -0700 | [diff] [blame] | 791 | Usage("Failed to parse --oat-fd argument '%s' as an integer", oat_fd_str); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 792 | } |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 793 | if (oat_fd < 0) { |
| 794 | Usage("--oat-fd passed a negative value %d", oat_fd); |
| 795 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 796 | } else if (option == "--watch-dog") { |
| 797 | watch_dog_enabled = true; |
| 798 | } else if (option == "--no-watch-dog") { |
| 799 | watch_dog_enabled = false; |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 800 | } else if (option == "--gen-gdb-info") { |
| 801 | generate_gdb_information = true; |
| 802 | } else if (option == "--no-gen-gdb-info") { |
| 803 | generate_gdb_information = false; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 804 | } else if (option.starts_with("-j")) { |
| 805 | const char* thread_count_str = option.substr(strlen("-j")).data(); |
| 806 | if (!ParseInt(thread_count_str, &thread_count)) { |
Brian Carlstrom | e0948e1 | 2013-08-29 09:36:15 -0700 | [diff] [blame] | 807 | Usage("Failed to parse -j argument '%s' as an integer", thread_count_str); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 808 | } |
| 809 | } else if (option.starts_with("--oat-location=")) { |
| 810 | oat_location = option.substr(strlen("--oat-location=")).data(); |
| 811 | } else if (option.starts_with("--bitcode=")) { |
| 812 | bitcode_filename = option.substr(strlen("--bitcode=")).data(); |
| 813 | } else if (option.starts_with("--image=")) { |
| 814 | image_filename = option.substr(strlen("--image=")).data(); |
| 815 | } else if (option.starts_with("--image-classes=")) { |
| 816 | image_classes_filename = option.substr(strlen("--image-classes=")).data(); |
| 817 | } else if (option.starts_with("--image-classes-zip=")) { |
| 818 | image_classes_zip_filename = option.substr(strlen("--image-classes-zip=")).data(); |
| 819 | } else if (option.starts_with("--base=")) { |
| 820 | const char* image_base_str = option.substr(strlen("--base=")).data(); |
| 821 | char* end; |
| 822 | image_base = strtoul(image_base_str, &end, 16); |
| 823 | if (end == image_base_str || *end != '\0') { |
| 824 | Usage("Failed to parse hexadecimal value for option %s", option.data()); |
| 825 | } |
| 826 | } else if (option.starts_with("--boot-image=")) { |
| 827 | boot_image_filename = option.substr(strlen("--boot-image=")).data(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 828 | } else if (option.starts_with("--android-root=")) { |
| 829 | android_root = option.substr(strlen("--android-root=")).data(); |
| 830 | } else if (option.starts_with("--instruction-set=")) { |
| 831 | StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data(); |
| 832 | if (instruction_set_str == "arm") { |
| 833 | instruction_set = kThumb2; |
| 834 | } else if (instruction_set_str == "mips") { |
| 835 | instruction_set = kMips; |
| 836 | } else if (instruction_set_str == "x86") { |
| 837 | instruction_set = kX86; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 838 | } else if (instruction_set_str == "x86_64") { |
| 839 | instruction_set = kX86_64; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 840 | } |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 841 | } else if (option.starts_with("--instruction-set-features=")) { |
| 842 | StringPiece str = option.substr(strlen("--instruction-set-features=")).data(); |
| 843 | instruction_set_features = ParseFeatureList(str.as_string()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 844 | } else if (option.starts_with("--compiler-backend=")) { |
| 845 | StringPiece backend_str = option.substr(strlen("--compiler-backend=")).data(); |
| 846 | if (backend_str == "Quick") { |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame^] | 847 | compiler_kind = Compiler::kQuick; |
| 848 | } else if (backend_str == "Optimizing") { |
| 849 | compiler_kind = Compiler::kOptimizing; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 850 | } else if (backend_str == "Portable") { |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame^] | 851 | compiler_kind = Compiler::kPortable; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 852 | } |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 853 | } else if (option.starts_with("--compiler-filter=")) { |
| 854 | compiler_filter_string = option.substr(strlen("--compiler-filter=")).data(); |
| 855 | } else if (option.starts_with("--huge-method-max=")) { |
| 856 | const char* threshold = option.substr(strlen("--huge-method-max=")).data(); |
| 857 | if (!ParseInt(threshold, &huge_method_threshold)) { |
| 858 | Usage("Failed to parse --huge-method-max '%s' as an integer", threshold); |
| 859 | } |
| 860 | if (huge_method_threshold < 0) { |
| 861 | Usage("--huge-method-max passed a negative value %s", huge_method_threshold); |
| 862 | } |
| 863 | } else if (option.starts_with("--large-method-max=")) { |
| 864 | const char* threshold = option.substr(strlen("--large-method-max=")).data(); |
| 865 | if (!ParseInt(threshold, &large_method_threshold)) { |
| 866 | Usage("Failed to parse --large-method-max '%s' as an integer", threshold); |
| 867 | } |
| 868 | if (large_method_threshold < 0) { |
| 869 | Usage("--large-method-max passed a negative value %s", large_method_threshold); |
| 870 | } |
| 871 | } else if (option.starts_with("--small-method-max=")) { |
| 872 | const char* threshold = option.substr(strlen("--small-method-max=")).data(); |
| 873 | if (!ParseInt(threshold, &small_method_threshold)) { |
| 874 | Usage("Failed to parse --small-method-max '%s' as an integer", threshold); |
| 875 | } |
| 876 | if (small_method_threshold < 0) { |
| 877 | Usage("--small-method-max passed a negative value %s", small_method_threshold); |
| 878 | } |
| 879 | } else if (option.starts_with("--tiny-method-max=")) { |
| 880 | const char* threshold = option.substr(strlen("--tiny-method-max=")).data(); |
| 881 | if (!ParseInt(threshold, &tiny_method_threshold)) { |
| 882 | Usage("Failed to parse --tiny-method-max '%s' as an integer", threshold); |
| 883 | } |
| 884 | if (tiny_method_threshold < 0) { |
| 885 | Usage("--tiny-method-max passed a negative value %s", tiny_method_threshold); |
| 886 | } |
| 887 | } else if (option.starts_with("--num-dex-methods=")) { |
| 888 | const char* threshold = option.substr(strlen("--num-dex-methods=")).data(); |
| 889 | if (!ParseInt(threshold, &num_dex_methods_threshold)) { |
| 890 | Usage("Failed to parse --num-dex-methods '%s' as an integer", threshold); |
| 891 | } |
| 892 | if (num_dex_methods_threshold < 0) { |
| 893 | Usage("--num-dex-methods passed a negative value %s", num_dex_methods_threshold); |
| 894 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 895 | } else if (option == "--host") { |
| 896 | is_host = true; |
| 897 | } else if (option == "--runtime-arg") { |
| 898 | if (++i >= argc) { |
| 899 | Usage("Missing required argument for --runtime-arg"); |
| 900 | } |
| 901 | if (log_options) { |
| 902 | LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i]; |
| 903 | } |
| 904 | runtime_args.push_back(argv[i]); |
Ian Rogers | 4639860 | 2013-08-20 07:50:36 -0700 | [diff] [blame] | 905 | } else if (option == "--dump-timing") { |
| 906 | dump_timing = true; |
Nicolas Geoffray | ea3fa0b | 2014-02-10 11:59:41 +0000 | [diff] [blame] | 907 | } else if (option == "--dump-passes") { |
| 908 | dump_passes = true; |
Ian Rogers | e732ef1 | 2013-10-09 15:22:24 -0700 | [diff] [blame] | 909 | } else if (option == "--dump-stats") { |
| 910 | dump_stats = true; |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 911 | } else if (option.starts_with("--profile-file=")) { |
| 912 | profile_file = option.substr(strlen("--profile-file=")).data(); |
| 913 | VLOG(compiler) << "dex2oat: profile file is " << profile_file; |
| 914 | } else if (option == "--no-profile-file") { |
| 915 | LOG(INFO) << "dex2oat: no profile file supplied (explictly)"; |
| 916 | // No profile |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 917 | } else { |
Brian Carlstrom | e0948e1 | 2013-08-29 09:36:15 -0700 | [diff] [blame] | 918 | Usage("Unknown argument %s", option.data()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 919 | } |
| 920 | } |
| 921 | |
| 922 | if (oat_filename.empty() && oat_fd == -1) { |
| 923 | Usage("Output must be supplied with either --oat-file or --oat-fd"); |
| 924 | } |
| 925 | |
| 926 | if (!oat_filename.empty() && oat_fd != -1) { |
| 927 | Usage("--oat-file should not be used with --oat-fd"); |
| 928 | } |
| 929 | |
| 930 | if (!oat_symbols.empty() && oat_fd != -1) { |
| 931 | Usage("--oat-symbols should not be used with --oat-fd"); |
| 932 | } |
| 933 | |
| 934 | if (!oat_symbols.empty() && is_host) { |
| 935 | Usage("--oat-symbols should not be used with --host"); |
| 936 | } |
| 937 | |
| 938 | if (oat_fd != -1 && !image_filename.empty()) { |
| 939 | Usage("--oat-fd should not be used with --image"); |
| 940 | } |
| 941 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 942 | if (android_root.empty()) { |
| 943 | const char* android_root_env_var = getenv("ANDROID_ROOT"); |
| 944 | if (android_root_env_var == NULL) { |
| 945 | Usage("--android-root unspecified and ANDROID_ROOT not set"); |
| 946 | } |
| 947 | android_root += android_root_env_var; |
| 948 | } |
| 949 | |
| 950 | bool image = (!image_filename.empty()); |
| 951 | if (!image && boot_image_filename.empty()) { |
Nicolas Geoffray | 9583fbc | 2014-02-28 15:21:07 +0000 | [diff] [blame] | 952 | boot_image_filename += GetAndroidRoot(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 953 | boot_image_filename += "/framework/boot.art"; |
| 954 | } |
| 955 | std::string boot_image_option; |
| 956 | if (!boot_image_filename.empty()) { |
| 957 | boot_image_option += "-Ximage:"; |
| 958 | boot_image_option += boot_image_filename; |
| 959 | } |
| 960 | |
| 961 | if (image_classes_filename != NULL && !image) { |
| 962 | Usage("--image-classes should only be used with --image"); |
| 963 | } |
| 964 | |
| 965 | if (image_classes_filename != NULL && !boot_image_option.empty()) { |
| 966 | Usage("--image-classes should not be used with --boot-image"); |
| 967 | } |
| 968 | |
| 969 | if (image_classes_zip_filename != NULL && image_classes_filename == NULL) { |
| 970 | Usage("--image-classes-zip should be used with --image-classes"); |
| 971 | } |
| 972 | |
| 973 | if (dex_filenames.empty() && zip_fd == -1) { |
| 974 | Usage("Input must be supplied with either --dex-file or --zip-fd"); |
| 975 | } |
| 976 | |
| 977 | if (!dex_filenames.empty() && zip_fd != -1) { |
| 978 | Usage("--dex-file should not be used with --zip-fd"); |
| 979 | } |
| 980 | |
| 981 | if (!dex_filenames.empty() && !zip_location.empty()) { |
| 982 | Usage("--dex-file should not be used with --zip-location"); |
| 983 | } |
| 984 | |
| 985 | if (dex_locations.empty()) { |
| 986 | for (size_t i = 0; i < dex_filenames.size(); i++) { |
| 987 | dex_locations.push_back(dex_filenames[i]); |
| 988 | } |
| 989 | } else if (dex_locations.size() != dex_filenames.size()) { |
| 990 | Usage("--dex-location arguments do not match --dex-file arguments"); |
| 991 | } |
| 992 | |
| 993 | if (zip_fd != -1 && zip_location.empty()) { |
| 994 | Usage("--zip-location should be supplied with --zip-fd"); |
| 995 | } |
| 996 | |
| 997 | if (boot_image_option.empty()) { |
| 998 | if (image_base == 0) { |
Brian Carlstrom | e0948e1 | 2013-08-29 09:36:15 -0700 | [diff] [blame] | 999 | Usage("Non-zero --base not specified"); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1000 | } |
| 1001 | } |
| 1002 | |
| 1003 | std::string oat_stripped(oat_filename); |
| 1004 | std::string oat_unstripped; |
| 1005 | if (!oat_symbols.empty()) { |
| 1006 | oat_unstripped += oat_symbols; |
| 1007 | } else { |
| 1008 | oat_unstripped += oat_filename; |
| 1009 | } |
| 1010 | |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1011 | if (compiler_filter_string == NULL) { |
Ian Rogers | befbd57 | 2014-03-06 01:13:39 -0800 | [diff] [blame] | 1012 | if (instruction_set == kX86_64) { |
| 1013 | // TODO: currently x86-64 is only interpreted. |
| 1014 | compiler_filter_string = "interpret-only"; |
| 1015 | } else if (image) { |
Brian Carlstrom | 5e754d8 | 2014-03-05 10:59:04 -0800 | [diff] [blame] | 1016 | compiler_filter_string = "speed"; |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1017 | } else { |
| 1018 | #if ART_SMALL_MODE |
| 1019 | compiler_filter_string = "interpret-only"; |
| 1020 | #else |
| 1021 | compiler_filter_string = "speed"; |
| 1022 | #endif |
| 1023 | } |
| 1024 | } |
| 1025 | CHECK(compiler_filter_string != nullptr); |
| 1026 | CompilerOptions::CompilerFilter compiler_filter = CompilerOptions::kDefaultCompilerFilter; |
| 1027 | if (strcmp(compiler_filter_string, "interpret-only") == 0) { |
| 1028 | compiler_filter = CompilerOptions::kInterpretOnly; |
| 1029 | } else if (strcmp(compiler_filter_string, "space") == 0) { |
| 1030 | compiler_filter = CompilerOptions::kSpace; |
| 1031 | } else if (strcmp(compiler_filter_string, "balanced") == 0) { |
| 1032 | compiler_filter = CompilerOptions::kBalanced; |
| 1033 | } else if (strcmp(compiler_filter_string, "speed") == 0) { |
| 1034 | compiler_filter = CompilerOptions::kSpeed; |
| 1035 | } else if (strcmp(compiler_filter_string, "everything") == 0) { |
| 1036 | compiler_filter = CompilerOptions::kEverything; |
| 1037 | } else { |
| 1038 | Usage("Unknown --compiler-filter value %s", compiler_filter_string); |
| 1039 | } |
| 1040 | |
| 1041 | CompilerOptions compiler_options(compiler_filter, |
| 1042 | huge_method_threshold, |
| 1043 | large_method_threshold, |
| 1044 | small_method_threshold, |
| 1045 | tiny_method_threshold, |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 1046 | num_dex_methods_threshold, |
| 1047 | generate_gdb_information |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1048 | #ifdef ART_SEA_IR_MODE |
| 1049 | , compiler_options.sea_ir_ = true; |
| 1050 | #endif |
| 1051 | ); // NOLINT(whitespace/parens) |
| 1052 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1053 | // Done with usage checks, enable watchdog if requested |
| 1054 | WatchDog watch_dog(watch_dog_enabled); |
| 1055 | |
| 1056 | // Check early that the result of compilation can be written |
| 1057 | UniquePtr<File> oat_file; |
| 1058 | bool create_file = !oat_unstripped.empty(); // as opposed to using open file descriptor |
| 1059 | if (create_file) { |
Brian Carlstrom | 7571e8b | 2013-08-12 17:04:14 -0700 | [diff] [blame] | 1060 | oat_file.reset(OS::CreateEmptyFile(oat_unstripped.c_str())); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1061 | if (oat_location.empty()) { |
| 1062 | oat_location = oat_filename; |
| 1063 | } |
| 1064 | } else { |
| 1065 | oat_file.reset(new File(oat_fd, oat_location)); |
| 1066 | oat_file->DisableAutoClose(); |
| 1067 | } |
| 1068 | if (oat_file.get() == NULL) { |
| 1069 | PLOG(ERROR) << "Failed to create oat file: " << oat_location; |
| 1070 | return EXIT_FAILURE; |
| 1071 | } |
| 1072 | if (create_file && fchmod(oat_file->Fd(), 0644) != 0) { |
| 1073 | PLOG(ERROR) << "Failed to make oat file world readable: " << oat_location; |
| 1074 | return EXIT_FAILURE; |
| 1075 | } |
| 1076 | |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1077 | timings.StartSplit("dex2oat Setup"); |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1078 | LOG(INFO) << "dex2oat: " << CommandLine(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1079 | |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1080 | Runtime::Options runtime_options; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1081 | std::vector<const DexFile*> boot_class_path; |
| 1082 | if (boot_image_option.empty()) { |
Brian Carlstrom | 3cf59d5 | 2013-11-10 21:04:10 -0800 | [diff] [blame] | 1083 | size_t failure_count = OpenDexFiles(dex_filenames, dex_locations, boot_class_path); |
| 1084 | if (failure_count > 0) { |
| 1085 | LOG(ERROR) << "Failed to open some dex files: " << failure_count; |
| 1086 | return EXIT_FAILURE; |
| 1087 | } |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1088 | runtime_options.push_back(std::make_pair("bootclasspath", &boot_class_path)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1089 | } else { |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1090 | runtime_options.push_back(std::make_pair(boot_image_option.c_str(), |
| 1091 | reinterpret_cast<void*>(NULL))); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1092 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1093 | for (size_t i = 0; i < runtime_args.size(); i++) { |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1094 | runtime_options.push_back(std::make_pair(runtime_args[i], reinterpret_cast<void*>(NULL))); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1095 | } |
| 1096 | |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1097 | VerificationResults verification_results(&compiler_options); |
| 1098 | DexFileToMethodInlinerMap method_inliner_map; |
| 1099 | CompilerCallbacksImpl callbacks(&verification_results, &method_inliner_map); |
| 1100 | runtime_options.push_back(std::make_pair("compilercallbacks", &callbacks)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1101 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1102 | Dex2Oat* p_dex2oat; |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1103 | if (!Dex2Oat::Create(&p_dex2oat, |
| 1104 | runtime_options, |
| 1105 | compiler_options, |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame^] | 1106 | compiler_kind, |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1107 | instruction_set, |
| 1108 | instruction_set_features, |
| 1109 | &verification_results, |
| 1110 | &method_inliner_map, |
| 1111 | thread_count)) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1112 | LOG(ERROR) << "Failed to create dex2oat"; |
| 1113 | return EXIT_FAILURE; |
| 1114 | } |
| 1115 | UniquePtr<Dex2Oat> dex2oat(p_dex2oat); |
| 1116 | // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start, |
Ian Rogers | 3f3d22c | 2013-08-27 18:11:09 -0700 | [diff] [blame] | 1117 | // give it away now so that we don't starve GC. |
| 1118 | Thread* self = Thread::Current(); |
| 1119 | self->TransitionFromRunnableToSuspended(kNative); |
Ian Rogers | 0f40ac3 | 2013-08-13 22:10:30 -0700 | [diff] [blame] | 1120 | // If we're doing the image, override the compiler filter to force full compilation. Must be |
buzbee | fe9ca40 | 2013-08-21 09:48:11 -0700 | [diff] [blame] | 1121 | // done ahead of WellKnownClasses::Init that causes verification. Note: doesn't force |
| 1122 | // compilation of class initializers. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1123 | // Whilst we're in native take the opportunity to initialize well known classes. |
Ian Rogers | 3f3d22c | 2013-08-27 18:11:09 -0700 | [diff] [blame] | 1124 | WellKnownClasses::Init(self->GetJniEnv()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1125 | |
| 1126 | // If --image-classes was specified, calculate the full list of classes to include in the image |
| 1127 | UniquePtr<CompilerDriver::DescriptorSet> image_classes(NULL); |
| 1128 | if (image_classes_filename != NULL) { |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 1129 | std::string error_msg; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1130 | if (image_classes_zip_filename != NULL) { |
| 1131 | image_classes.reset(dex2oat->ReadImageClassesFromZip(image_classes_zip_filename, |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 1132 | image_classes_filename, |
| 1133 | &error_msg)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1134 | } else { |
| 1135 | image_classes.reset(dex2oat->ReadImageClassesFromFile(image_classes_filename)); |
| 1136 | } |
| 1137 | if (image_classes.get() == NULL) { |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 1138 | LOG(ERROR) << "Failed to create list of image classes from '" << image_classes_filename << |
| 1139 | "': " << error_msg; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1140 | return EXIT_FAILURE; |
| 1141 | } |
| 1142 | } |
| 1143 | |
| 1144 | std::vector<const DexFile*> dex_files; |
| 1145 | if (boot_image_option.empty()) { |
| 1146 | dex_files = Runtime::Current()->GetClassLinker()->GetBootClassPath(); |
| 1147 | } else { |
| 1148 | if (dex_filenames.empty()) { |
Ian Rogers | 740a11d | 2014-01-14 10:11:25 -0800 | [diff] [blame] | 1149 | ATRACE_BEGIN("Opening zip archive from file descriptor"); |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 1150 | std::string error_msg; |
| 1151 | UniquePtr<ZipArchive> zip_archive(ZipArchive::OpenFromFd(zip_fd, zip_location.c_str(), |
| 1152 | &error_msg)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1153 | if (zip_archive.get() == NULL) { |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 1154 | LOG(ERROR) << "Failed to open zip from file descriptor for '" << zip_location << "': " |
| 1155 | << error_msg; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1156 | return EXIT_FAILURE; |
| 1157 | } |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 1158 | const DexFile* dex_file = DexFile::Open(*zip_archive.get(), zip_location, &error_msg); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1159 | if (dex_file == NULL) { |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 1160 | LOG(ERROR) << "Failed to open dex from file descriptor for zip file '" << zip_location |
| 1161 | << "': " << error_msg; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1162 | return EXIT_FAILURE; |
| 1163 | } |
| 1164 | dex_files.push_back(dex_file); |
Ian Rogers | 740a11d | 2014-01-14 10:11:25 -0800 | [diff] [blame] | 1165 | ATRACE_END(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1166 | } else { |
Brian Carlstrom | 3cf59d5 | 2013-11-10 21:04:10 -0800 | [diff] [blame] | 1167 | size_t failure_count = OpenDexFiles(dex_filenames, dex_locations, dex_files); |
| 1168 | if (failure_count > 0) { |
| 1169 | LOG(ERROR) << "Failed to open some dex files: " << failure_count; |
| 1170 | return EXIT_FAILURE; |
| 1171 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1172 | } |
Brian Carlstrom | d76e083 | 2013-08-29 15:17:42 -0700 | [diff] [blame] | 1173 | |
Brian Carlstrom | f79fccb | 2014-02-20 08:55:10 -0800 | [diff] [blame] | 1174 | const bool kSaveDexInput = false; |
| 1175 | if (kSaveDexInput) { |
| 1176 | for (size_t i = 0; i < dex_files.size(); ++i) { |
| 1177 | const DexFile* dex_file = dex_files[i]; |
Ian Rogers | 5180cc1 | 2014-02-21 13:34:16 -0800 | [diff] [blame] | 1178 | std::string tmp_file_name(StringPrintf("/data/local/tmp/dex2oat.%d.%zd.dex", getpid(), i)); |
Brian Carlstrom | f79fccb | 2014-02-20 08:55:10 -0800 | [diff] [blame] | 1179 | UniquePtr<File> tmp_file(OS::CreateEmptyFile(tmp_file_name.c_str())); |
| 1180 | if (tmp_file.get() == nullptr) { |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1181 | PLOG(ERROR) << "Failed to open file " << tmp_file_name |
| 1182 | << ". Try: adb shell chmod 777 /data/local/tmp"; |
Brian Carlstrom | f79fccb | 2014-02-20 08:55:10 -0800 | [diff] [blame] | 1183 | continue; |
| 1184 | } |
| 1185 | tmp_file->WriteFully(dex_file->Begin(), dex_file->Size()); |
| 1186 | LOG(INFO) << "Wrote input to " << tmp_file_name; |
| 1187 | } |
| 1188 | } |
Brian Carlstrom | 2ec6520 | 2014-03-03 15:16:37 -0800 | [diff] [blame] | 1189 | } |
| 1190 | // Ensure opened dex files are writable for dex-to-dex transformations. |
| 1191 | for (const auto& dex_file : dex_files) { |
| 1192 | if (!dex_file->EnableWrite()) { |
| 1193 | PLOG(ERROR) << "Failed to make .dex file writeable '" << dex_file->GetLocation() << "'\n"; |
Brian Carlstrom | d76e083 | 2013-08-29 15:17:42 -0700 | [diff] [blame] | 1194 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1195 | } |
| 1196 | |
buzbee | a024a06 | 2013-07-31 10:47:37 -0700 | [diff] [blame] | 1197 | /* |
| 1198 | * If we're not in interpret-only mode, go ahead and compile small applications. Don't |
| 1199 | * bother to check if we're doing the image. |
| 1200 | */ |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1201 | if (!image && (compiler_options.GetCompilerFilter() != CompilerOptions::kInterpretOnly)) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1202 | size_t num_methods = 0; |
| 1203 | for (size_t i = 0; i != dex_files.size(); ++i) { |
| 1204 | const DexFile* dex_file = dex_files[i]; |
| 1205 | CHECK(dex_file != NULL); |
| 1206 | num_methods += dex_file->NumMethodIds(); |
| 1207 | } |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1208 | if (num_methods <= compiler_options.GetNumDexMethodsThreshold()) { |
| 1209 | compiler_options.SetCompilerFilter(CompilerOptions::kSpeed); |
Anwar Ghuloum | 75a43f1 | 2013-08-13 17:22:14 -0700 | [diff] [blame] | 1210 | VLOG(compiler) << "Below method threshold, compiling anyways"; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1211 | } |
| 1212 | } |
| 1213 | |
| 1214 | UniquePtr<const CompilerDriver> compiler(dex2oat->CreateOatFile(boot_image_option, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1215 | android_root, |
| 1216 | is_host, |
| 1217 | dex_files, |
| 1218 | oat_file.get(), |
| 1219 | bitcode_filename, |
| 1220 | image, |
| 1221 | image_classes, |
| 1222 | dump_stats, |
Nicolas Geoffray | ea3fa0b | 2014-02-10 11:59:41 +0000 | [diff] [blame] | 1223 | dump_passes, |
| 1224 | timings, |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 1225 | compiler_phases_timings, |
| 1226 | profile_file)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1227 | |
| 1228 | if (compiler.get() == NULL) { |
| 1229 | LOG(ERROR) << "Failed to create oat file: " << oat_location; |
| 1230 | return EXIT_FAILURE; |
| 1231 | } |
| 1232 | |
Anwar Ghuloum | 75a43f1 | 2013-08-13 17:22:14 -0700 | [diff] [blame] | 1233 | VLOG(compiler) << "Oat file written successfully (unstripped): " << oat_location; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1234 | |
| 1235 | // Notes on the interleaving of creating the image and oat file to |
| 1236 | // ensure the references between the two are correct. |
| 1237 | // |
| 1238 | // Currently we have a memory layout that looks something like this: |
| 1239 | // |
| 1240 | // +--------------+ |
| 1241 | // | image | |
| 1242 | // +--------------+ |
| 1243 | // | boot oat | |
| 1244 | // +--------------+ |
| 1245 | // | alloc spaces | |
| 1246 | // +--------------+ |
| 1247 | // |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 1248 | // There are several constraints on the loading of the image and boot.oat. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1249 | // |
| 1250 | // 1. The image is expected to be loaded at an absolute address and |
| 1251 | // contains Objects with absolute pointers within the image. |
| 1252 | // |
| 1253 | // 2. There are absolute pointers from Methods in the image to their |
| 1254 | // code in the oat. |
| 1255 | // |
| 1256 | // 3. There are absolute pointers from the code in the oat to Methods |
| 1257 | // in the image. |
| 1258 | // |
| 1259 | // 4. There are absolute pointers from code in the oat to other code |
| 1260 | // in the oat. |
| 1261 | // |
| 1262 | // To get this all correct, we go through several steps. |
| 1263 | // |
| 1264 | // 1. We have already created that oat file above with |
| 1265 | // CreateOatFile. Originally this was just our own proprietary file |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 1266 | // but now it is contained within an ELF dynamic object (aka an .so |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1267 | // file). The Compiler returned by CreateOatFile provides |
| 1268 | // PatchInformation for references to oat code and Methods that need |
| 1269 | // to be update once we know where the oat file will be located |
| 1270 | // after the image. |
| 1271 | // |
| 1272 | // 2. We create the image file. It needs to know where the oat file |
| 1273 | // will be loaded after itself. Originally when oat file was simply |
| 1274 | // memory mapped so we could predict where its contents were based |
| 1275 | // on the file size. Now that it is an ELF file, we need to inspect |
| 1276 | // the ELF file to understand the in memory segment layout including |
| 1277 | // where the oat header is located within. ImageWriter's |
| 1278 | // PatchOatCodeAndMethods uses the PatchInformation from the |
| 1279 | // Compiler to touch up absolute references in the oat file. |
| 1280 | // |
| 1281 | // 3. We fixup the ELF program headers so that dlopen will try to |
| 1282 | // load the .so at the desired location at runtime by offsetting the |
| 1283 | // Elf32_Phdr.p_vaddr values by the desired base address. |
| 1284 | // |
| 1285 | if (image) { |
Anwar Ghuloum | 6f28d91 | 2013-07-24 15:02:53 -0700 | [diff] [blame] | 1286 | timings.NewSplit("dex2oat ImageWriter"); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1287 | bool image_creation_success = dex2oat->CreateImageFile(image_filename, |
| 1288 | image_base, |
| 1289 | oat_unstripped, |
| 1290 | oat_location, |
| 1291 | *compiler.get()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1292 | if (!image_creation_success) { |
| 1293 | return EXIT_FAILURE; |
| 1294 | } |
Anwar Ghuloum | 75a43f1 | 2013-08-13 17:22:14 -0700 | [diff] [blame] | 1295 | VLOG(compiler) << "Image written successfully: " << image_filename; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1296 | } |
| 1297 | |
| 1298 | if (is_host) { |
Ian Rogers | 4639860 | 2013-08-20 07:50:36 -0700 | [diff] [blame] | 1299 | if (dump_timing || (dump_slow_timing && timings.GetTotalNs() > MsToNs(1000))) { |
Ian Rogers | 5fe9af7 | 2013-11-14 00:17:20 -0800 | [diff] [blame] | 1300 | LOG(INFO) << Dumpable<TimingLogger>(timings); |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 1301 | } |
Nicolas Geoffray | ea3fa0b | 2014-02-10 11:59:41 +0000 | [diff] [blame] | 1302 | if (dump_passes) { |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 1303 | LOG(INFO) << Dumpable<CumulativeLogger>(*compiler.get()->GetTimingsLogger()); |
Nicolas Geoffray | ea3fa0b | 2014-02-10 11:59:41 +0000 | [diff] [blame] | 1304 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1305 | return EXIT_SUCCESS; |
| 1306 | } |
| 1307 | |
| 1308 | // If we don't want to strip in place, copy from unstripped location to stripped location. |
| 1309 | // We need to strip after image creation because FixupElf needs to use .strtab. |
| 1310 | if (oat_unstripped != oat_stripped) { |
Anwar Ghuloum | 6f28d91 | 2013-07-24 15:02:53 -0700 | [diff] [blame] | 1311 | timings.NewSplit("dex2oat OatFile copy"); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1312 | oat_file.reset(); |
Brian Carlstrom | 7571e8b | 2013-08-12 17:04:14 -0700 | [diff] [blame] | 1313 | UniquePtr<File> in(OS::OpenFileForReading(oat_unstripped.c_str())); |
| 1314 | UniquePtr<File> out(OS::CreateEmptyFile(oat_stripped.c_str())); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1315 | size_t buffer_size = 8192; |
| 1316 | UniquePtr<uint8_t> buffer(new uint8_t[buffer_size]); |
| 1317 | while (true) { |
| 1318 | int bytes_read = TEMP_FAILURE_RETRY(read(in->Fd(), buffer.get(), buffer_size)); |
| 1319 | if (bytes_read <= 0) { |
| 1320 | break; |
| 1321 | } |
| 1322 | bool write_ok = out->WriteFully(buffer.get(), bytes_read); |
| 1323 | CHECK(write_ok); |
| 1324 | } |
| 1325 | oat_file.reset(out.release()); |
Anwar Ghuloum | 75a43f1 | 2013-08-13 17:22:14 -0700 | [diff] [blame] | 1326 | VLOG(compiler) << "Oat file copied successfully (stripped): " << oat_stripped; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1327 | } |
| 1328 | |
Brian Carlstrom | 7fcba11 | 2013-07-22 10:28:48 -0700 | [diff] [blame] | 1329 | #if ART_USE_PORTABLE_COMPILER // We currently only generate symbols on Portable |
Anwar Ghuloum | 6f28d91 | 2013-07-24 15:02:53 -0700 | [diff] [blame] | 1330 | timings.NewSplit("dex2oat ElfStripper"); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1331 | // Strip unneeded sections for target |
| 1332 | off_t seek_actual = lseek(oat_file->Fd(), 0, SEEK_SET); |
| 1333 | CHECK_EQ(0, seek_actual); |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 1334 | std::string error_msg; |
| 1335 | CHECK(ElfStripper::Strip(oat_file.get(), &error_msg)) << error_msg; |
Anwar Ghuloum | 6f28d91 | 2013-07-24 15:02:53 -0700 | [diff] [blame] | 1336 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1337 | |
| 1338 | // We wrote the oat file successfully, and want to keep it. |
Anwar Ghuloum | 75a43f1 | 2013-08-13 17:22:14 -0700 | [diff] [blame] | 1339 | VLOG(compiler) << "Oat file written successfully (stripped): " << oat_location; |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 1340 | #endif // ART_USE_PORTABLE_COMPILER |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 1341 | |
Anwar Ghuloum | 6f28d91 | 2013-07-24 15:02:53 -0700 | [diff] [blame] | 1342 | timings.EndSplit(); |
| 1343 | |
Brian Carlstrom | c6dfdac | 2013-08-26 18:57:31 -0700 | [diff] [blame] | 1344 | if (dump_timing || (dump_slow_timing && timings.GetTotalNs() > MsToNs(1000))) { |
Ian Rogers | 5fe9af7 | 2013-11-14 00:17:20 -0800 | [diff] [blame] | 1345 | LOG(INFO) << Dumpable<TimingLogger>(timings); |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 1346 | } |
Nicolas Geoffray | ea3fa0b | 2014-02-10 11:59:41 +0000 | [diff] [blame] | 1347 | if (dump_passes) { |
| 1348 | LOG(INFO) << Dumpable<CumulativeLogger>(compiler_phases_timings); |
| 1349 | } |
Ian Rogers | 2672a9f | 2013-09-05 17:24:22 -0700 | [diff] [blame] | 1350 | |
| 1351 | // Everything was successfully written, do an explicit exit here to avoid running Runtime |
| 1352 | // destructors that take time (bug 10645725) unless we're a debug build or running on valgrind. |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1353 | if (!kIsDebugBuild && (RUNNING_ON_VALGRIND == 0)) { |
Brian Carlstrom | 65c23bb | 2014-02-01 22:12:39 -0800 | [diff] [blame] | 1354 | dex2oat->LogCompletionTime(); |
Ian Rogers | 2672a9f | 2013-09-05 17:24:22 -0700 | [diff] [blame] | 1355 | exit(EXIT_SUCCESS); |
| 1356 | } |
| 1357 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1358 | return EXIT_SUCCESS; |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1359 | } // NOLINT(readability/fn_size) |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 1360 | } // namespace art |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1361 | |
| 1362 | int main(int argc, char** argv) { |
| 1363 | return art::dex2oat(argc, argv); |
| 1364 | } |