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