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 | |
Andreas Gampe | d687e37 | 2015-04-28 23:16:03 -0700 | [diff] [blame] | 17 | #include <inttypes.h> |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 18 | #include <stdio.h> |
| 19 | #include <stdlib.h> |
| 20 | #include <sys/stat.h> |
Evgenii Stepanov | 1e13374 | 2015-05-20 12:30:59 -0700 | [diff] [blame] | 21 | #include "base/memory_tool.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 22 | |
| 23 | #include <fstream> |
| 24 | #include <iostream> |
| 25 | #include <sstream> |
| 26 | #include <string> |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 27 | #include <unordered_set> |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 28 | #include <vector> |
| 29 | |
Vladimir Marko | f94b781 | 2014-06-05 15:48:04 +0100 | [diff] [blame] | 30 | #if defined(__linux__) && defined(__arm__) |
| 31 | #include <sys/personality.h> |
| 32 | #include <sys/utsname.h> |
| 33 | #endif |
| 34 | |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 35 | #define ATRACE_TAG ATRACE_TAG_DALVIK |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 36 | #include <cutils/trace.h> |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 37 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 38 | #include "art_method-inl.h" |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 39 | #include "arch/instruction_set_features.h" |
Andreas Gampe | c5a3ea7 | 2015-01-13 16:41:53 -0800 | [diff] [blame] | 40 | #include "arch/mips/instruction_set_features_mips.h" |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 41 | #include "base/dumpable.h" |
Andreas Gampe | 794ad76 | 2015-02-23 08:12:24 -0800 | [diff] [blame] | 42 | #include "base/macros.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 43 | #include "base/stl_util.h" |
| 44 | #include "base/stringpiece.h" |
Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 45 | #include "base/time_utils.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 46 | #include "base/timing_logger.h" |
| 47 | #include "base/unix_file/fd_file.h" |
| 48 | #include "class_linker.h" |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 49 | #include "compiler.h" |
Vladimir Marko | 2b5eaa2 | 2013-12-13 13:59:30 +0000 | [diff] [blame] | 50 | #include "compiler_callbacks.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 51 | #include "dex_file-inl.h" |
Mathieu Chartier | 5bdab12 | 2015-01-26 18:30:19 -0800 | [diff] [blame] | 52 | #include "dex/pass_manager.h" |
Vladimir Marko | c7f8320 | 2014-01-24 17:55:18 +0000 | [diff] [blame] | 53 | #include "dex/verification_results.h" |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 54 | #include "dex/quick_compiler_callbacks.h" |
| 55 | #include "dex/quick/dex_file_to_method_inliner_map.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 56 | #include "driver/compiler_driver.h" |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 57 | #include "driver/compiler_options.h" |
Vladimir Marko | 10c1356 | 2015-11-25 14:33:36 +0000 | [diff] [blame] | 58 | #include "dwarf/method_debug_info.h" |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 59 | #include "elf_file.h" |
Tong Shen | 62d1ca3 | 2014-09-03 17:24:56 -0700 | [diff] [blame] | 60 | #include "elf_writer.h" |
Vladimir Marko | 10c1356 | 2015-11-25 14:33:36 +0000 | [diff] [blame] | 61 | #include "elf_writer_quick.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 62 | #include "gc/space/image_space.h" |
| 63 | #include "gc/space/space-inl.h" |
| 64 | #include "image_writer.h" |
Andreas Gampe | 2969bcd | 2015-03-09 12:57:41 -0700 | [diff] [blame] | 65 | #include "interpreter/unstarted_runtime.h" |
Calin Juravle | 998c216 | 2015-12-21 15:39:33 +0200 | [diff] [blame] | 66 | #include "jit/offline_profiling_info.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 67 | #include "leb128.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 68 | #include "mirror/class-inl.h" |
| 69 | #include "mirror/class_loader.h" |
| 70 | #include "mirror/object-inl.h" |
| 71 | #include "mirror/object_array-inl.h" |
| 72 | #include "oat_writer.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 73 | #include "os.h" |
Calin Juravle | 998c216 | 2015-12-21 15:39:33 +0200 | [diff] [blame] | 74 | #include "profile_assistant.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 75 | #include "runtime.h" |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 76 | #include "runtime_options.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 77 | #include "ScopedLocalRef.h" |
| 78 | #include "scoped_thread_state_change.h" |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 79 | #include "utils.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 80 | #include "well_known_classes.h" |
| 81 | #include "zip_archive.h" |
| 82 | |
| 83 | namespace art { |
| 84 | |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 85 | static int original_argc; |
| 86 | static char** original_argv; |
| 87 | |
| 88 | static std::string CommandLine() { |
| 89 | std::vector<std::string> command; |
| 90 | for (int i = 0; i < original_argc; ++i) { |
| 91 | command.push_back(original_argv[i]); |
| 92 | } |
| 93 | return Join(command, ' '); |
| 94 | } |
| 95 | |
Andreas Gampe | 046c706 | 2015-05-18 23:22:54 -0700 | [diff] [blame] | 96 | // A stripped version. Remove some less essential parameters. If we see a "--zip-fd=" parameter, be |
| 97 | // even more aggressive. There won't be much reasonable data here for us in that case anyways (the |
| 98 | // locations are all staged). |
| 99 | static std::string StrippedCommandLine() { |
| 100 | std::vector<std::string> command; |
| 101 | |
| 102 | // Do a pre-pass to look for zip-fd. |
| 103 | bool saw_zip_fd = false; |
| 104 | for (int i = 0; i < original_argc; ++i) { |
| 105 | if (StartsWith(original_argv[i], "--zip-fd=")) { |
| 106 | saw_zip_fd = true; |
| 107 | break; |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | // Now filter out things. |
| 112 | for (int i = 0; i < original_argc; ++i) { |
| 113 | // All runtime-arg parameters are dropped. |
| 114 | if (strcmp(original_argv[i], "--runtime-arg") == 0) { |
| 115 | i++; // Drop the next part, too. |
| 116 | continue; |
| 117 | } |
| 118 | |
| 119 | // Any instruction-setXXX is dropped. |
| 120 | if (StartsWith(original_argv[i], "--instruction-set")) { |
| 121 | continue; |
| 122 | } |
| 123 | |
| 124 | // The boot image is dropped. |
| 125 | if (StartsWith(original_argv[i], "--boot-image=")) { |
| 126 | continue; |
| 127 | } |
| 128 | |
| 129 | // This should leave any dex-file and oat-file options, describing what we compiled. |
| 130 | |
| 131 | // However, we prefer to drop this when we saw --zip-fd. |
| 132 | if (saw_zip_fd) { |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 133 | // Drop anything --zip-X, --dex-X, --oat-X, --swap-X, or --app-image-X |
Andreas Gampe | 046c706 | 2015-05-18 23:22:54 -0700 | [diff] [blame] | 134 | if (StartsWith(original_argv[i], "--zip-") || |
| 135 | StartsWith(original_argv[i], "--dex-") || |
| 136 | StartsWith(original_argv[i], "--oat-") || |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 137 | StartsWith(original_argv[i], "--swap-") || |
| 138 | StartsWith(original_argv[i], "--app-image-")) { |
Andreas Gampe | 046c706 | 2015-05-18 23:22:54 -0700 | [diff] [blame] | 139 | continue; |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | command.push_back(original_argv[i]); |
| 144 | } |
| 145 | |
| 146 | // Construct the final output. |
| 147 | if (command.size() <= 1U) { |
| 148 | // It seems only "/system/bin/dex2oat" is left, or not even that. Use a pretty line. |
| 149 | return "Starting dex2oat."; |
| 150 | } |
| 151 | return Join(command, ' '); |
| 152 | } |
| 153 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 154 | static void UsageErrorV(const char* fmt, va_list ap) { |
| 155 | std::string error; |
| 156 | StringAppendV(&error, fmt, ap); |
| 157 | LOG(ERROR) << error; |
| 158 | } |
| 159 | |
| 160 | static void UsageError(const char* fmt, ...) { |
| 161 | va_list ap; |
| 162 | va_start(ap, fmt); |
| 163 | UsageErrorV(fmt, ap); |
| 164 | va_end(ap); |
| 165 | } |
| 166 | |
Andreas Gampe | 794ad76 | 2015-02-23 08:12:24 -0800 | [diff] [blame] | 167 | NO_RETURN static void Usage(const char* fmt, ...) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 168 | va_list ap; |
| 169 | va_start(ap, fmt); |
| 170 | UsageErrorV(fmt, ap); |
| 171 | va_end(ap); |
| 172 | |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 173 | UsageError("Command: %s", CommandLine().c_str()); |
| 174 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 175 | UsageError("Usage: dex2oat [options]..."); |
| 176 | UsageError(""); |
Jean-Philippe Halimi | 3d329d7 | 2015-03-23 14:09:48 +0100 | [diff] [blame] | 177 | UsageError(" -j<number>: specifies the number of threads used for compilation."); |
| 178 | UsageError(" Default is the number of detected hardware threads available on the"); |
| 179 | UsageError(" host system."); |
| 180 | UsageError(" Example: -j12"); |
| 181 | UsageError(""); |
Richard Uhler | e934df2 | 2015-03-17 11:26:16 -0700 | [diff] [blame] | 182 | UsageError(" --dex-file=<dex-file>: specifies a .dex, .jar, or .apk file to compile."); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 183 | UsageError(" Example: --dex-file=/system/framework/core.jar"); |
| 184 | UsageError(""); |
Richard Uhler | e934df2 | 2015-03-17 11:26:16 -0700 | [diff] [blame] | 185 | UsageError(" --dex-location=<dex-location>: specifies an alternative dex location to"); |
| 186 | UsageError(" encode in the oat file for the corresponding --dex-file argument."); |
| 187 | UsageError(" Example: --dex-file=/home/build/out/system/framework/core.jar"); |
| 188 | UsageError(" --dex-location=/system/framework/core.jar"); |
| 189 | UsageError(""); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 190 | UsageError(" --zip-fd=<file-descriptor>: specifies a file descriptor of a zip file"); |
| 191 | UsageError(" containing a classes.dex file to compile."); |
| 192 | UsageError(" Example: --zip-fd=5"); |
| 193 | UsageError(""); |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 194 | UsageError(" --zip-location=<zip-location>: specifies a symbolic name for the file"); |
| 195 | UsageError(" corresponding to the file descriptor specified by --zip-fd."); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 196 | UsageError(" Example: --zip-location=/system/app/Calculator.apk"); |
| 197 | UsageError(""); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 198 | UsageError(" --oat-file=<file.oat>: specifies an oat output destination via a filename."); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 199 | UsageError(" Example: --oat-file=/system/framework/boot.oat"); |
| 200 | UsageError(""); |
| 201 | UsageError(" --oat-fd=<number>: specifies the oat output destination via a file descriptor."); |
Wonil Kim | 9cb554a | 2014-04-28 11:26:55 +0900 | [diff] [blame] | 202 | UsageError(" Example: --oat-fd=6"); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 203 | UsageError(""); |
| 204 | UsageError(" --oat-location=<oat-name>: specifies a symbolic name for the file corresponding"); |
| 205 | UsageError(" to the file descriptor specified by --oat-fd."); |
| 206 | UsageError(" Example: --oat-location=/data/dalvik-cache/system@app@Calculator.apk.oat"); |
| 207 | UsageError(""); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 208 | UsageError(" --oat-symbols=<file.oat>: specifies an oat output destination with full symbols."); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 209 | UsageError(" Example: --oat-symbols=/symbols/system/framework/boot.oat"); |
| 210 | UsageError(""); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 211 | UsageError(" --image=<file.art>: specifies an output image filename."); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 212 | UsageError(" Example: --image=/system/framework/boot.art"); |
| 213 | UsageError(""); |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 214 | UsageError(" --image-format=(uncompressed|lz4):"); |
| 215 | UsageError(" Which format to store the image."); |
| 216 | UsageError(" Example: --image-format=lz4"); |
| 217 | UsageError(" Default: uncompressed"); |
| 218 | UsageError(""); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 219 | UsageError(" --image-classes=<classname-file>: specifies classes to include in an image."); |
| 220 | UsageError(" Example: --image=frameworks/base/preloaded-classes"); |
| 221 | UsageError(""); |
| 222 | UsageError(" --base=<hex-address>: specifies the base address when creating a boot image."); |
| 223 | UsageError(" Example: --base=0x50000000"); |
| 224 | UsageError(""); |
| 225 | UsageError(" --boot-image=<file.art>: provide the image file for the boot class path."); |
Kevin Brodsky | 64fff41 | 2015-11-24 14:24:34 +0000 | [diff] [blame] | 226 | UsageError(" Do not include the arch as part of the name, it is added automatically."); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 227 | UsageError(" Example: --boot-image=/system/framework/boot.art"); |
Kevin Brodsky | 64fff41 | 2015-11-24 14:24:34 +0000 | [diff] [blame] | 228 | UsageError(" (specifies /system/framework/<arch>/boot.art as the image file)"); |
Nicolas Geoffray | 9583fbc | 2014-02-28 15:21:07 +0000 | [diff] [blame] | 229 | UsageError(" Default: $ANDROID_ROOT/system/framework/boot.art"); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 230 | UsageError(""); |
| 231 | UsageError(" --android-root=<path>: used to locate libraries for portable linking."); |
| 232 | UsageError(" Example: --android-root=out/host/linux-x86"); |
| 233 | UsageError(" Default: $ANDROID_ROOT"); |
| 234 | UsageError(""); |
Andreas Gampe | 57b3429 | 2015-01-14 15:45:59 -0800 | [diff] [blame] | 235 | UsageError(" --instruction-set=(arm|arm64|mips|mips64|x86|x86_64): compile for a particular"); |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 236 | UsageError(" instruction set."); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 237 | UsageError(" Example: --instruction-set=x86"); |
| 238 | UsageError(" Default: arm"); |
| 239 | UsageError(""); |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 240 | UsageError(" --instruction-set-features=...,: Specify instruction set features"); |
| 241 | UsageError(" Example: --instruction-set-features=div"); |
| 242 | UsageError(" Default: default"); |
| 243 | UsageError(""); |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 244 | UsageError(" --compile-pic: Force indirect use of code, methods, and classes"); |
| 245 | UsageError(" Default: disabled"); |
| 246 | UsageError(""); |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 247 | UsageError(" --compiler-backend=(Quick|Optimizing): select compiler backend"); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 248 | UsageError(" set."); |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 249 | UsageError(" Example: --compiler-backend=Optimizing"); |
Nicolas Geoffray | 409e809 | 2015-10-01 10:32:19 +0100 | [diff] [blame] | 250 | UsageError(" Default: Optimizing"); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 251 | UsageError(""); |
Nicolas Geoffray | 88157ef | 2014-09-12 10:29:53 +0100 | [diff] [blame] | 252 | UsageError(" --compiler-filter=" |
| 253 | "(verify-none" |
| 254 | "|interpret-only" |
| 255 | "|space" |
| 256 | "|balanced" |
| 257 | "|speed" |
| 258 | "|everything" |
| 259 | "|time):"); |
Jeff Hao | 4a200f5 | 2014-04-01 14:58:49 -0700 | [diff] [blame] | 260 | UsageError(" select compiler filter."); |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 261 | UsageError(" Example: --compiler-filter=everything"); |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 262 | UsageError(" Default: speed"); |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 263 | UsageError(""); |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 264 | UsageError(" --huge-method-max=<method-instruction-count>: threshold size for a huge"); |
| 265 | UsageError(" method for compiler filter tuning."); |
| 266 | UsageError(" Example: --huge-method-max=%d", CompilerOptions::kDefaultHugeMethodThreshold); |
| 267 | UsageError(" Default: %d", CompilerOptions::kDefaultHugeMethodThreshold); |
| 268 | UsageError(""); |
| 269 | UsageError(" --large-method-max=<method-instruction-count>: threshold size for a large"); |
| 270 | UsageError(" method for compiler filter tuning."); |
| 271 | UsageError(" Example: --large-method-max=%d", CompilerOptions::kDefaultLargeMethodThreshold); |
| 272 | UsageError(" Default: %d", CompilerOptions::kDefaultLargeMethodThreshold); |
| 273 | UsageError(""); |
| 274 | UsageError(" --small-method-max=<method-instruction-count>: threshold size for a small"); |
| 275 | UsageError(" method for compiler filter tuning."); |
| 276 | UsageError(" Example: --small-method-max=%d", CompilerOptions::kDefaultSmallMethodThreshold); |
| 277 | UsageError(" Default: %d", CompilerOptions::kDefaultSmallMethodThreshold); |
| 278 | UsageError(""); |
| 279 | UsageError(" --tiny-method-max=<method-instruction-count>: threshold size for a tiny"); |
| 280 | UsageError(" method for compiler filter tuning."); |
| 281 | UsageError(" Example: --tiny-method-max=%d", CompilerOptions::kDefaultTinyMethodThreshold); |
| 282 | UsageError(" Default: %d", CompilerOptions::kDefaultTinyMethodThreshold); |
| 283 | UsageError(""); |
| 284 | UsageError(" --num-dex-methods=<method-count>: threshold size for a small dex file for"); |
| 285 | UsageError(" compiler filter tuning. If the input has fewer than this many methods"); |
Jeff Hao | 4a200f5 | 2014-04-01 14:58:49 -0700 | [diff] [blame] | 286 | UsageError(" and the filter is not interpret-only or verify-none, overrides the"); |
| 287 | UsageError(" filter to use speed"); |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 288 | UsageError(" Example: --num-dex-method=%d", CompilerOptions::kDefaultNumDexMethodsThreshold); |
| 289 | UsageError(" Default: %d", CompilerOptions::kDefaultNumDexMethodsThreshold); |
| 290 | UsageError(""); |
Calin Juravle | ec74835 | 2015-07-29 13:52:12 +0100 | [diff] [blame] | 291 | UsageError(" --inline-depth-limit=<depth-limit>: the depth limit of inlining for fine tuning"); |
| 292 | UsageError(" the compiler. A zero value will disable inlining. Honored only by Optimizing."); |
Roland Levillain | a215b95 | 2015-08-07 11:38:32 +0100 | [diff] [blame] | 293 | UsageError(" Has priority over the --compiler-filter option. Intended for "); |
| 294 | UsageError(" development/experimental use."); |
Calin Juravle | ec74835 | 2015-07-29 13:52:12 +0100 | [diff] [blame] | 295 | UsageError(" Example: --inline-depth-limit=%d", CompilerOptions::kDefaultInlineDepthLimit); |
| 296 | UsageError(" Default: %d", CompilerOptions::kDefaultInlineDepthLimit); |
| 297 | UsageError(""); |
| 298 | UsageError(" --inline-max-code-units=<code-units-count>: the maximum code units that a method"); |
| 299 | UsageError(" can have to be considered for inlining. A zero value will disable inlining."); |
Roland Levillain | a215b95 | 2015-08-07 11:38:32 +0100 | [diff] [blame] | 300 | UsageError(" Honored only by Optimizing. Has priority over the --compiler-filter option."); |
| 301 | UsageError(" Intended for development/experimental use."); |
Calin Juravle | ec74835 | 2015-07-29 13:52:12 +0100 | [diff] [blame] | 302 | UsageError(" Example: --inline-max-code-units=%d", |
| 303 | CompilerOptions::kDefaultInlineMaxCodeUnits); |
| 304 | UsageError(" Default: %d", CompilerOptions::kDefaultInlineMaxCodeUnits); |
| 305 | UsageError(""); |
Ian Rogers | 4639860 | 2013-08-20 07:50:36 -0700 | [diff] [blame] | 306 | UsageError(" --dump-timing: display a breakdown of where time was spent"); |
| 307 | UsageError(""); |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 308 | UsageError(" --include-patch-information: Include patching information so the generated code"); |
| 309 | UsageError(" can have its base address moved without full recompilation."); |
| 310 | UsageError(""); |
| 311 | UsageError(" --no-include-patch-information: Do not include patching information."); |
| 312 | UsageError(""); |
David Srbecky | 8363c77 | 2015-05-28 16:12:43 +0100 | [diff] [blame] | 313 | UsageError(" -g"); |
| 314 | UsageError(" --generate-debug-info: Generate debug information for native debugging,"); |
| 315 | UsageError(" such as stack unwinding information, ELF symbols and DWARF sections."); |
David Srbecky | 3e09eeb | 2016-01-12 14:54:03 +0000 | [diff] [blame^] | 316 | UsageError(" If used without --native-debuggable, it will be best-effort only."); |
| 317 | UsageError(" This option does not affect the generated code. (disabled by default)"); |
Alex Light | 78382fa | 2014-06-06 15:45:32 -0700 | [diff] [blame] | 318 | UsageError(""); |
David Srbecky | 8363c77 | 2015-05-28 16:12:43 +0100 | [diff] [blame] | 319 | UsageError(" --no-generate-debug-info: Do not generate debug information for native debugging."); |
David Srbecky | 8dc7324 | 2015-04-12 11:40:39 +0100 | [diff] [blame] | 320 | UsageError(""); |
David Srbecky | 3e09eeb | 2016-01-12 14:54:03 +0000 | [diff] [blame^] | 321 | UsageError(" --debuggable: Produce code debuggable with Java debugger."); |
David Srbecky | 0cf4493 | 2015-12-09 14:09:59 +0000 | [diff] [blame] | 322 | UsageError(""); |
| 323 | UsageError(" --native-debuggable: Produce code debuggable with native debugger (like LLDB)."); |
| 324 | UsageError(" Implies --debuggable."); |
| 325 | UsageError(""); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 326 | UsageError(" --runtime-arg <argument>: used to specify various arguments for the runtime,"); |
| 327 | UsageError(" such as initial heap size, maximum heap size, and verbose output."); |
| 328 | UsageError(" Use a separate --runtime-arg switch for each argument."); |
| 329 | UsageError(" Example: --runtime-arg -Xms256m"); |
Jeff Hao | 4a200f5 | 2014-04-01 14:58:49 -0700 | [diff] [blame] | 330 | UsageError(""); |
Dave Allison | d6ed642 | 2014-04-09 23:36:15 +0000 | [diff] [blame] | 331 | UsageError(" --profile-file=<filename>: specify profiler output file to use for compilation."); |
Calin Juravle | 998c216 | 2015-12-21 15:39:33 +0200 | [diff] [blame] | 332 | UsageError(" Can be specified multiple time, in which case the data from the different"); |
| 333 | UsageError(" profiles will be aggregated."); |
| 334 | UsageError(""); |
| 335 | UsageError(" --reference-profile-file=<filename>: specify a reference profile file to use when"); |
| 336 | UsageError(" compiling. The data in this file will be compared with the data in the"); |
| 337 | UsageError(" associated --profile-file and the compilation will proceed only if there is"); |
| 338 | UsageError(" a significant difference (--reference-profile-file is paired with"); |
| 339 | UsageError(" --profile-file in the natural order). If the compilation was attempted then"); |
| 340 | UsageError(" --profile-file will be merged into --reference-profile-file. Valid only when"); |
| 341 | UsageError(" specified together with --profile-file."); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 342 | UsageError(""); |
Chao-ying Fu | cd8ce66 | 2014-03-11 14:57:19 -0700 | [diff] [blame] | 343 | UsageError(" --print-pass-names: print a list of pass names"); |
| 344 | UsageError(""); |
| 345 | UsageError(" --disable-passes=<pass-names>: disable one or more passes separated by comma."); |
| 346 | UsageError(" Example: --disable-passes=UseCount,BBOptimizations"); |
| 347 | UsageError(""); |
Razvan A Lupusoru | bd25d4b | 2014-07-02 18:16:51 -0700 | [diff] [blame] | 348 | UsageError(" --print-pass-options: print a list of passes that have configurable options along " |
| 349 | "with the setting."); |
| 350 | UsageError(" Will print default if no overridden setting exists."); |
| 351 | UsageError(""); |
| 352 | UsageError(" --pass-options=Pass1Name:Pass1OptionName:Pass1Option#," |
| 353 | "Pass2Name:Pass2OptionName:Pass2Option#"); |
| 354 | UsageError(" Used to specify a pass specific option. The setting itself must be integer."); |
| 355 | UsageError(" Separator used between options is a comma."); |
| 356 | UsageError(""); |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 357 | UsageError(" --swap-file=<file-name>: specifies a file to use for swap."); |
| 358 | UsageError(" Example: --swap-file=/data/tmp/swap.001"); |
| 359 | UsageError(""); |
| 360 | UsageError(" --swap-fd=<file-descriptor>: specifies a file to use for swap (by descriptor)."); |
| 361 | UsageError(" Example: --swap-fd=10"); |
| 362 | UsageError(""); |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 363 | UsageError(" --app-image-fd=<file-descriptor>: specify output file descriptor for app image."); |
| 364 | UsageError(" Example: --app-image-fd=10"); |
| 365 | UsageError(""); |
| 366 | UsageError(" --app-image-file=<file-name>: specify a file name for app image."); |
| 367 | UsageError(" Example: --app-image-file=/data/dalvik-cache/system@app@Calculator.apk.art"); |
| 368 | UsageError(""); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 369 | UsageError(" --multi-image: specify that separate oat and image files be generated for each " |
| 370 | "input dex file."); |
| 371 | UsageError(""); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 372 | std::cerr << "See log for usage error information\n"; |
| 373 | exit(EXIT_FAILURE); |
| 374 | } |
| 375 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 376 | // The primary goal of the watchdog is to prevent stuck build servers |
| 377 | // during development when fatal aborts lead to a cascade of failures |
| 378 | // that result in a deadlock. |
| 379 | class WatchDog { |
Brian Carlstrom | 95b033b | 2014-12-03 22:29:37 -0800 | [diff] [blame] | 380 | // WatchDog defines its own CHECK_PTHREAD_CALL to avoid using LOG which uses locks |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 381 | #undef CHECK_PTHREAD_CALL |
| 382 | #define CHECK_WATCH_DOG_PTHREAD_CALL(call, args, what) \ |
| 383 | do { \ |
| 384 | int rc = call args; \ |
| 385 | if (rc != 0) { \ |
| 386 | errno = rc; \ |
| 387 | std::string message(# call); \ |
| 388 | message += " failed for "; \ |
| 389 | message += reason; \ |
| 390 | Fatal(message); \ |
| 391 | } \ |
| 392 | } while (false) |
| 393 | |
| 394 | public: |
Brian Carlstrom | 93ba893 | 2013-07-17 21:31:49 -0700 | [diff] [blame] | 395 | explicit WatchDog(bool is_watch_dog_enabled) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 396 | is_watch_dog_enabled_ = is_watch_dog_enabled; |
| 397 | if (!is_watch_dog_enabled_) { |
| 398 | return; |
| 399 | } |
| 400 | shutting_down_ = false; |
| 401 | const char* reason = "dex2oat watch dog thread startup"; |
Kenny Root | 5131638 | 2014-05-13 14:59:37 -0700 | [diff] [blame] | 402 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_init, (&mutex_, nullptr), reason); |
| 403 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_init, (&cond_, nullptr), reason); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 404 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_init, (&attr_), reason); |
| 405 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason); |
| 406 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_destroy, (&attr_), reason); |
| 407 | } |
| 408 | ~WatchDog() { |
| 409 | if (!is_watch_dog_enabled_) { |
| 410 | return; |
| 411 | } |
| 412 | const char* reason = "dex2oat watch dog thread shutdown"; |
| 413 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason); |
| 414 | shutting_down_ = true; |
| 415 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_signal, (&cond_), reason); |
| 416 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_unlock, (&mutex_), reason); |
| 417 | |
Kenny Root | 5131638 | 2014-05-13 14:59:37 -0700 | [diff] [blame] | 418 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_join, (pthread_, nullptr), reason); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 419 | |
| 420 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_destroy, (&cond_), reason); |
| 421 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_destroy, (&mutex_), reason); |
| 422 | } |
| 423 | |
| 424 | private: |
| 425 | static void* CallBack(void* arg) { |
| 426 | WatchDog* self = reinterpret_cast<WatchDog*>(arg); |
| 427 | ::art::SetThreadName("dex2oat watch dog"); |
| 428 | self->Wait(); |
Kenny Root | 5131638 | 2014-05-13 14:59:37 -0700 | [diff] [blame] | 429 | return nullptr; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 430 | } |
| 431 | |
Andreas Gampe | 794ad76 | 2015-02-23 08:12:24 -0800 | [diff] [blame] | 432 | NO_RETURN static void Fatal(const std::string& message) { |
Andreas Gampe | d687e37 | 2015-04-28 23:16:03 -0700 | [diff] [blame] | 433 | // TODO: When we can guarantee it won't prevent shutdown in error cases, move to LOG. However, |
| 434 | // it's rather easy to hang in unwinding. |
| 435 | // LogLine also avoids ART logging lock issues, as it's really only a wrapper around |
| 436 | // logcat logging or stderr output. |
| 437 | LogMessage::LogLine(__FILE__, __LINE__, LogSeverity::FATAL, message.c_str()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 438 | exit(1); |
| 439 | } |
| 440 | |
| 441 | void Wait() { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 442 | // TODO: tune the multiplier for GC verification, the following is just to make the timeout |
| 443 | // large. |
Andreas Gampe | d687e37 | 2015-04-28 23:16:03 -0700 | [diff] [blame] | 444 | constexpr int64_t multiplier = kVerifyObjectSupport > kVerifyObjectModeFast ? 100 : 1; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 445 | timespec timeout_ts; |
| 446 | InitTimeSpec(true, CLOCK_REALTIME, multiplier * kWatchDogTimeoutSeconds * 1000, 0, &timeout_ts); |
| 447 | const char* reason = "dex2oat watch dog thread waiting"; |
| 448 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason); |
| 449 | while (!shutting_down_) { |
Brian Carlstrom | 95b033b | 2014-12-03 22:29:37 -0800 | [diff] [blame] | 450 | int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_, &timeout_ts)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 451 | if (rc == ETIMEDOUT) { |
Andreas Gampe | d687e37 | 2015-04-28 23:16:03 -0700 | [diff] [blame] | 452 | Fatal(StringPrintf("dex2oat did not finish after %" PRId64 " seconds", |
| 453 | kWatchDogTimeoutSeconds)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 454 | } else if (rc != 0) { |
| 455 | std::string message(StringPrintf("pthread_cond_timedwait failed: %s", |
| 456 | strerror(errno))); |
| 457 | Fatal(message.c_str()); |
| 458 | } |
| 459 | } |
| 460 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_unlock, (&mutex_), reason); |
| 461 | } |
| 462 | |
| 463 | // When setting timeouts, keep in mind that the build server may not be as fast as your desktop. |
Mathieu Chartier | 13b9f43 | 2014-09-09 17:26:58 -0700 | [diff] [blame] | 464 | // Debug builds are slower so they have larger timeouts. |
Andreas Gampe | d687e37 | 2015-04-28 23:16:03 -0700 | [diff] [blame] | 465 | static constexpr int64_t kSlowdownFactor = kIsDebugBuild ? 5U : 1U; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 466 | |
Andreas Gampe | 540138a | 2015-09-14 15:34:38 -0700 | [diff] [blame] | 467 | // 9.5 minutes scaled by kSlowdownFactor. This is slightly smaller than the Package Manager |
| 468 | // watchdog (PackageManagerService.WATCHDOG_TIMEOUT, 10 minutes), so that dex2oat will abort |
| 469 | // itself before that watchdog would take down the system server. |
| 470 | static constexpr int64_t kWatchDogTimeoutSeconds = kSlowdownFactor * (9 * 60 + 30); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 471 | |
| 472 | bool is_watch_dog_enabled_; |
| 473 | bool shutting_down_; |
| 474 | // TODO: Switch to Mutex when we can guarantee it won't prevent shutdown in error cases. |
| 475 | pthread_mutex_t mutex_; |
| 476 | pthread_cond_t cond_; |
| 477 | pthread_attr_t attr_; |
| 478 | pthread_t pthread_; |
| 479 | }; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 480 | |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 481 | static constexpr size_t kMinDexFilesForSwap = 2; |
| 482 | static constexpr size_t kMinDexFileCumulativeSizeForSwap = 20 * MB; |
| 483 | |
| 484 | static bool UseSwap(bool is_image, std::vector<const DexFile*>& dex_files) { |
| 485 | if (is_image) { |
| 486 | // Don't use swap, we know generation should succeed, and we don't want to slow it down. |
| 487 | return false; |
| 488 | } |
| 489 | if (dex_files.size() < kMinDexFilesForSwap) { |
| 490 | // If there are less dex files than the threshold, assume it's gonna be fine. |
| 491 | return false; |
| 492 | } |
| 493 | size_t dex_files_size = 0; |
| 494 | for (const auto* dex_file : dex_files) { |
| 495 | dex_files_size += dex_file->GetHeader().file_size_; |
| 496 | } |
| 497 | return dex_files_size >= kMinDexFileCumulativeSizeForSwap; |
| 498 | } |
| 499 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 500 | class Dex2Oat FINAL { |
| 501 | public: |
| 502 | explicit Dex2Oat(TimingLogger* timings) : |
Nicolas Geoffray | 409e809 | 2015-10-01 10:32:19 +0100 | [diff] [blame] | 503 | compiler_kind_(Compiler::kOptimizing), |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 504 | instruction_set_(kRuntimeISA), |
| 505 | // Take the default set of instruction features from the build. |
Andreas Gampe | 3f30e12 | 2015-09-17 14:03:21 -0700 | [diff] [blame] | 506 | verification_results_(nullptr), |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 507 | method_inliner_map_(), |
| 508 | runtime_(nullptr), |
| 509 | thread_count_(sysconf(_SC_NPROCESSORS_CONF)), |
| 510 | start_ns_(NanoTime()), |
| 511 | oat_fd_(-1), |
| 512 | zip_fd_(-1), |
| 513 | image_base_(0U), |
| 514 | image_classes_zip_filename_(nullptr), |
| 515 | image_classes_filename_(nullptr), |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 516 | image_storage_mode_(ImageHeader::kStorageModeUncompressed), |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 517 | compiled_classes_zip_filename_(nullptr), |
| 518 | compiled_classes_filename_(nullptr), |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 519 | compiled_methods_zip_filename_(nullptr), |
| 520 | compiled_methods_filename_(nullptr), |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 521 | app_image_(false), |
| 522 | boot_image_(false), |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 523 | is_host_(false), |
Vladimir Marko | 10c1356 | 2015-11-25 14:33:36 +0000 | [diff] [blame] | 524 | image_writer_(nullptr), |
Andreas Gampe | 3f30e12 | 2015-09-17 14:03:21 -0700 | [diff] [blame] | 525 | driver_(nullptr), |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 526 | dump_stats_(false), |
| 527 | dump_passes_(false), |
| 528 | dump_timing_(false), |
| 529 | dump_slow_timing_(kIsDebugBuild), |
Calin Juravle | 87000a9 | 2015-08-24 15:34:44 +0100 | [diff] [blame] | 530 | dump_cfg_append_(false), |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 531 | swap_fd_(-1), |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 532 | app_image_fd_(kInvalidImageFd), |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 533 | timings_(timings) {} |
| 534 | |
| 535 | ~Dex2Oat() { |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 536 | // Free opened dex files before deleting the runtime_, because ~DexFile |
| 537 | // uses MemMap, which is shut down by ~Runtime. |
| 538 | class_path_files_.clear(); |
| 539 | opened_dex_files_.clear(); |
| 540 | |
| 541 | // Log completion time before deleting the runtime_, because this accesses |
| 542 | // the runtime. |
| 543 | LogCompletionTime(); |
| 544 | |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 545 | if (!kIsDebugBuild && !(RUNNING_ON_MEMORY_TOOL && kMemoryToolDetectsLeaks)) { |
| 546 | // We want to just exit on non-debug builds, not bringing the runtime down |
| 547 | // in an orderly fashion. So release the following fields. |
| 548 | driver_.release(); |
| 549 | image_writer_.release(); |
| 550 | for (std::unique_ptr<const DexFile>& dex_file : opened_dex_files_) { |
| 551 | dex_file.release(); |
| 552 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 553 | for (std::unique_ptr<File>& oat_file : oat_files_) { |
| 554 | oat_file.release(); |
| 555 | } |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 556 | runtime_.release(); |
| 557 | verification_results_.release(); |
| 558 | key_value_store_.release(); |
Vladimir Marko | f94b781 | 2014-06-05 15:48:04 +0100 | [diff] [blame] | 559 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 560 | } |
| 561 | |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 562 | struct ParserOptions { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 563 | std::vector<const char*> oat_symbols; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 564 | std::string boot_image_filename; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 565 | bool watch_dog_enabled = true; |
Nicolas Geoffray | 1412dfa | 2015-03-20 14:48:13 +0000 | [diff] [blame] | 566 | bool requested_specific_compiler = false; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 567 | std::string error_msg; |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 568 | }; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 569 | |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 570 | void ParseZipFd(const StringPiece& option) { |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 571 | ParseUintOption(option, "--zip-fd", &zip_fd_, Usage); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 572 | } |
| 573 | |
| 574 | void ParseOatFd(const StringPiece& option) { |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 575 | ParseUintOption(option, "--oat-fd", &oat_fd_, Usage); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 576 | } |
| 577 | |
| 578 | void ParseJ(const StringPiece& option) { |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 579 | ParseUintOption(option, "-j", &thread_count_, Usage, /* is_long_option */ false); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 580 | } |
| 581 | |
| 582 | void ParseBase(const StringPiece& option) { |
| 583 | DCHECK(option.starts_with("--base=")); |
| 584 | const char* image_base_str = option.substr(strlen("--base=")).data(); |
| 585 | char* end; |
| 586 | image_base_ = strtoul(image_base_str, &end, 16); |
| 587 | if (end == image_base_str || *end != '\0') { |
| 588 | Usage("Failed to parse hexadecimal value for option %s", option.data()); |
| 589 | } |
| 590 | } |
| 591 | |
| 592 | void ParseInstructionSet(const StringPiece& option) { |
| 593 | DCHECK(option.starts_with("--instruction-set=")); |
| 594 | StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data(); |
| 595 | // StringPiece is not necessarily zero-terminated, so need to make a copy and ensure it. |
| 596 | std::unique_ptr<char[]> buf(new char[instruction_set_str.length() + 1]); |
| 597 | strncpy(buf.get(), instruction_set_str.data(), instruction_set_str.length()); |
| 598 | buf.get()[instruction_set_str.length()] = 0; |
| 599 | instruction_set_ = GetInstructionSetFromString(buf.get()); |
| 600 | // arm actually means thumb2. |
| 601 | if (instruction_set_ == InstructionSet::kArm) { |
| 602 | instruction_set_ = InstructionSet::kThumb2; |
| 603 | } |
| 604 | } |
| 605 | |
| 606 | void ParseInstructionSetVariant(const StringPiece& option, ParserOptions* parser_options) { |
| 607 | DCHECK(option.starts_with("--instruction-set-variant=")); |
| 608 | StringPiece str = option.substr(strlen("--instruction-set-variant=")).data(); |
| 609 | instruction_set_features_.reset( |
| 610 | InstructionSetFeatures::FromVariant( |
| 611 | instruction_set_, str.as_string(), &parser_options->error_msg)); |
| 612 | if (instruction_set_features_.get() == nullptr) { |
| 613 | Usage("%s", parser_options->error_msg.c_str()); |
| 614 | } |
| 615 | } |
| 616 | |
| 617 | void ParseInstructionSetFeatures(const StringPiece& option, ParserOptions* parser_options) { |
| 618 | DCHECK(option.starts_with("--instruction-set-features=")); |
| 619 | StringPiece str = option.substr(strlen("--instruction-set-features=")).data(); |
| 620 | if (instruction_set_features_.get() == nullptr) { |
| 621 | instruction_set_features_.reset( |
| 622 | InstructionSetFeatures::FromVariant( |
| 623 | instruction_set_, "default", &parser_options->error_msg)); |
| 624 | if (instruction_set_features_.get() == nullptr) { |
| 625 | Usage("Problem initializing default instruction set features variant: %s", |
| 626 | parser_options->error_msg.c_str()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 627 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 628 | } |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 629 | instruction_set_features_.reset( |
| 630 | instruction_set_features_->AddFeaturesFromString(str.as_string(), |
| 631 | &parser_options->error_msg)); |
| 632 | if (instruction_set_features_.get() == nullptr) { |
| 633 | Usage("Error parsing '%s': %s", option.data(), parser_options->error_msg.c_str()); |
| 634 | } |
| 635 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 636 | |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 637 | void ParseCompilerBackend(const StringPiece& option, ParserOptions* parser_options) { |
| 638 | DCHECK(option.starts_with("--compiler-backend=")); |
| 639 | parser_options->requested_specific_compiler = true; |
| 640 | StringPiece backend_str = option.substr(strlen("--compiler-backend=")).data(); |
| 641 | if (backend_str == "Quick") { |
| 642 | compiler_kind_ = Compiler::kQuick; |
| 643 | } else if (backend_str == "Optimizing") { |
| 644 | compiler_kind_ = Compiler::kOptimizing; |
| 645 | } else { |
| 646 | Usage("Unknown compiler backend: %s", backend_str.data()); |
| 647 | } |
| 648 | } |
| 649 | |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 650 | void ParseImageFormat(const StringPiece& option) { |
| 651 | const StringPiece substr("--image-format="); |
| 652 | DCHECK(option.starts_with(substr)); |
| 653 | const StringPiece format_str = option.substr(substr.length()); |
| 654 | if (format_str == "lz4") { |
| 655 | image_storage_mode_ = ImageHeader::kStorageModeLZ4; |
| 656 | } else if (format_str == "uncompressed") { |
| 657 | image_storage_mode_ = ImageHeader::kStorageModeUncompressed; |
| 658 | } else { |
| 659 | Usage("Unknown image format: %s", format_str.data()); |
| 660 | } |
| 661 | } |
| 662 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 663 | void ProcessOptions(ParserOptions* parser_options, bool multi_image) { |
| 664 | boot_image_ = !image_filenames_.empty(); |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 665 | app_image_ = app_image_fd_ != -1 || !app_image_file_name_.empty(); |
| 666 | |
| 667 | if (IsAppImage() && IsBootImage()) { |
| 668 | Usage("Can't have both --image and (--app-image-fd or --app-image-file)"); |
| 669 | } |
| 670 | |
| 671 | if (IsBootImage()) { |
Nicolas Geoffray | 409e809 | 2015-10-01 10:32:19 +0100 | [diff] [blame] | 672 | // We need the boot image to always be debuggable. |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 673 | compiler_options_->debuggable_ = true; |
Nicolas Geoffray | 1412dfa | 2015-03-20 14:48:13 +0000 | [diff] [blame] | 674 | } |
Nicolas Geoffray | 9bb492a | 2014-11-25 23:42:00 +0000 | [diff] [blame] | 675 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 676 | if (oat_filenames_.empty() && oat_fd_ == -1) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 677 | Usage("Output must be supplied with either --oat-file or --oat-fd"); |
| 678 | } |
| 679 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 680 | if (!oat_filenames_.empty() && oat_fd_ != -1) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 681 | Usage("--oat-file should not be used with --oat-fd"); |
| 682 | } |
| 683 | |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 684 | if (!parser_options->oat_symbols.empty() && oat_fd_ != -1) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 685 | Usage("--oat-symbols should not be used with --oat-fd"); |
| 686 | } |
| 687 | |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 688 | if (!parser_options->oat_symbols.empty() && is_host_) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 689 | Usage("--oat-symbols should not be used with --host"); |
| 690 | } |
| 691 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 692 | if (oat_fd_ != -1 && !image_filenames_.empty()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 693 | Usage("--oat-fd should not be used with --image"); |
| 694 | } |
| 695 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 696 | if (!parser_options->oat_symbols.empty() && |
| 697 | parser_options->oat_symbols.size() != oat_filenames_.size()) { |
| 698 | Usage("--oat-file arguments do not match --oat-symbols arguments"); |
| 699 | } |
| 700 | |
| 701 | if (!image_filenames_.empty() && image_filenames_.size() != oat_filenames_.size()) { |
| 702 | Usage("--oat-file arguments do not match --image arguments"); |
| 703 | } |
| 704 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 705 | if (android_root_.empty()) { |
| 706 | const char* android_root_env_var = getenv("ANDROID_ROOT"); |
| 707 | if (android_root_env_var == nullptr) { |
| 708 | Usage("--android-root unspecified and ANDROID_ROOT not set"); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 709 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 710 | android_root_ += android_root_env_var; |
| 711 | } |
| 712 | |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 713 | if (!boot_image_ && parser_options->boot_image_filename.empty()) { |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 714 | parser_options->boot_image_filename += android_root_; |
| 715 | parser_options->boot_image_filename += "/framework/boot.art"; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 716 | } |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 717 | if (!parser_options->boot_image_filename.empty()) { |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 718 | boot_image_filename_ = parser_options->boot_image_filename; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 719 | } |
| 720 | |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 721 | if (image_classes_filename_ != nullptr && !IsBootImage()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 722 | Usage("--image-classes should only be used with --image"); |
| 723 | } |
| 724 | |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 725 | if (image_classes_filename_ != nullptr && !boot_image_filename_.empty()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 726 | Usage("--image-classes should not be used with --boot-image"); |
| 727 | } |
| 728 | |
| 729 | if (image_classes_zip_filename_ != nullptr && image_classes_filename_ == nullptr) { |
| 730 | Usage("--image-classes-zip should be used with --image-classes"); |
| 731 | } |
| 732 | |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 733 | if (compiled_classes_filename_ != nullptr && !IsBootImage()) { |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 734 | Usage("--compiled-classes should only be used with --image"); |
| 735 | } |
| 736 | |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 737 | if (compiled_classes_filename_ != nullptr && !boot_image_filename_.empty()) { |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 738 | Usage("--compiled-classes should not be used with --boot-image"); |
| 739 | } |
| 740 | |
| 741 | if (compiled_classes_zip_filename_ != nullptr && compiled_classes_filename_ == nullptr) { |
| 742 | Usage("--compiled-classes-zip should be used with --compiled-classes"); |
| 743 | } |
| 744 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 745 | if (dex_filenames_.empty() && zip_fd_ == -1) { |
| 746 | Usage("Input must be supplied with either --dex-file or --zip-fd"); |
| 747 | } |
| 748 | |
| 749 | if (!dex_filenames_.empty() && zip_fd_ != -1) { |
| 750 | Usage("--dex-file should not be used with --zip-fd"); |
| 751 | } |
| 752 | |
| 753 | if (!dex_filenames_.empty() && !zip_location_.empty()) { |
| 754 | Usage("--dex-file should not be used with --zip-location"); |
| 755 | } |
| 756 | |
| 757 | if (dex_locations_.empty()) { |
| 758 | for (const char* dex_file_name : dex_filenames_) { |
| 759 | dex_locations_.push_back(dex_file_name); |
| 760 | } |
| 761 | } else if (dex_locations_.size() != dex_filenames_.size()) { |
| 762 | Usage("--dex-location arguments do not match --dex-file arguments"); |
| 763 | } |
| 764 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 765 | if (!dex_filenames_.empty() && !oat_filenames_.empty()) { |
| 766 | if (oat_filenames_.size() != 1 && oat_filenames_.size() != dex_filenames_.size()) { |
| 767 | Usage("--oat-file arguments must be singular or match --dex-file arguments"); |
| 768 | } |
| 769 | } |
| 770 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 771 | if (zip_fd_ != -1 && zip_location_.empty()) { |
| 772 | Usage("--zip-location should be supplied with --zip-fd"); |
| 773 | } |
| 774 | |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 775 | if (boot_image_filename_.empty()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 776 | if (image_base_ == 0) { |
| 777 | Usage("Non-zero --base not specified"); |
| 778 | } |
| 779 | } |
| 780 | |
Calin Juravle | 998c216 | 2015-12-21 15:39:33 +0200 | [diff] [blame] | 781 | if (!profile_files_.empty()) { |
| 782 | if (!reference_profile_files_.empty() && |
| 783 | (reference_profile_files_.size() != profile_files_.size())) { |
| 784 | Usage("If specified, --reference-profile-file should match the number of --profile-file."); |
| 785 | } |
| 786 | } |
| 787 | |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 788 | if (!parser_options->oat_symbols.empty()) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 789 | oat_unstripped_ = std::move(parser_options->oat_symbols); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 790 | } |
| 791 | |
| 792 | // If no instruction set feature was given, use the default one for the target |
| 793 | // instruction set. |
| 794 | if (instruction_set_features_.get() == nullptr) { |
| 795 | instruction_set_features_.reset( |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 796 | InstructionSetFeatures::FromVariant( |
| 797 | instruction_set_, "default", &parser_options->error_msg)); |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 798 | if (instruction_set_features_.get() == nullptr) { |
| 799 | Usage("Problem initializing default instruction set features variant: %s", |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 800 | parser_options->error_msg.c_str()); |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 801 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 802 | } |
| 803 | |
| 804 | if (instruction_set_ == kRuntimeISA) { |
| 805 | std::unique_ptr<const InstructionSetFeatures> runtime_features( |
| 806 | InstructionSetFeatures::FromCppDefines()); |
| 807 | if (!instruction_set_features_->Equals(runtime_features.get())) { |
| 808 | LOG(WARNING) << "Mismatch between dex2oat instruction set features (" |
| 809 | << *instruction_set_features_ << ") and those of dex2oat executable (" |
| 810 | << *runtime_features <<") for the command line:\n" |
| 811 | << CommandLine(); |
| 812 | } |
| 813 | } |
| 814 | |
Roland Levillain | a215b95 | 2015-08-07 11:38:32 +0100 | [diff] [blame] | 815 | // It they are not set, use default values for inlining settings. |
| 816 | // TODO: We should rethink the compiler filter. We mostly save |
| 817 | // time here, which is orthogonal to space. |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 818 | if (compiler_options_->inline_depth_limit_ == CompilerOptions::kUnsetInlineDepthLimit) { |
| 819 | compiler_options_->inline_depth_limit_ = |
| 820 | (compiler_options_->compiler_filter_ == CompilerOptions::kSpace) |
Roland Levillain | a215b95 | 2015-08-07 11:38:32 +0100 | [diff] [blame] | 821 | // Implementation of the space filter: limit inlining depth. |
| 822 | ? CompilerOptions::kSpaceFilterInlineDepthLimit |
| 823 | : CompilerOptions::kDefaultInlineDepthLimit; |
| 824 | } |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 825 | if (compiler_options_->inline_max_code_units_ == CompilerOptions::kUnsetInlineMaxCodeUnits) { |
| 826 | compiler_options_->inline_max_code_units_ = |
| 827 | (compiler_options_->compiler_filter_ == CompilerOptions::kSpace) |
Roland Levillain | a215b95 | 2015-08-07 11:38:32 +0100 | [diff] [blame] | 828 | // Implementation of the space filter: limit inlining max code units. |
| 829 | ? CompilerOptions::kSpaceFilterInlineMaxCodeUnits |
| 830 | : CompilerOptions::kDefaultInlineMaxCodeUnits; |
| 831 | } |
| 832 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 833 | // Checks are all explicit until we know the architecture. |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 834 | // Set the compilation target's implicit checks options. |
| 835 | switch (instruction_set_) { |
| 836 | case kArm: |
| 837 | case kThumb2: |
| 838 | case kArm64: |
| 839 | case kX86: |
| 840 | case kX86_64: |
Douglas Leung | 22bb5a2 | 2015-07-02 16:42:08 -0700 | [diff] [blame] | 841 | case kMips: |
| 842 | case kMips64: |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 843 | compiler_options_->implicit_null_checks_ = true; |
| 844 | compiler_options_->implicit_so_checks_ = true; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 845 | break; |
| 846 | |
| 847 | default: |
| 848 | // Defaults are correct. |
| 849 | break; |
| 850 | } |
| 851 | |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 852 | compiler_options_->verbose_methods_ = verbose_methods_.empty() ? nullptr : &verbose_methods_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 853 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 854 | if (!IsBootImage() && multi_image) { |
| 855 | Usage("--multi-image can only be used when creating boot images"); |
| 856 | } |
| 857 | if (IsBootImage() && multi_image && image_filenames_.size() > 1) { |
| 858 | Usage("--multi-image cannot be used with multiple image names"); |
| 859 | } |
| 860 | |
| 861 | // For now, if we're on the host and compile the boot image, *always* use multiple image files. |
| 862 | if (!kIsTargetBuild && IsBootImage()) { |
| 863 | if (image_filenames_.size() == 1) { |
| 864 | multi_image = true; |
| 865 | } |
| 866 | } |
| 867 | |
| 868 | if (IsBootImage() && multi_image) { |
| 869 | // Expand the oat and image filenames. |
| 870 | std::string base_oat = oat_filenames_[0]; |
| 871 | size_t last_oat_slash = base_oat.rfind('/'); |
| 872 | if (last_oat_slash == std::string::npos) { |
| 873 | Usage("--multi-image used with unusable oat filename %s", base_oat.c_str()); |
| 874 | } |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 875 | // We also need to honor path components that were encoded through '@'. Otherwise the loading |
| 876 | // code won't be able to find the images. |
| 877 | if (base_oat.find('@', last_oat_slash) != std::string::npos) { |
| 878 | last_oat_slash = base_oat.rfind('@'); |
| 879 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 880 | base_oat = base_oat.substr(0, last_oat_slash + 1); |
| 881 | |
| 882 | std::string base_img = image_filenames_[0]; |
| 883 | size_t last_img_slash = base_img.rfind('/'); |
| 884 | if (last_img_slash == std::string::npos) { |
| 885 | Usage("--multi-image used with unusable image filename %s", base_img.c_str()); |
| 886 | } |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 887 | // We also need to honor path components that were encoded through '@'. Otherwise the loading |
| 888 | // code won't be able to find the images. |
| 889 | if (base_img.find('@', last_img_slash) != std::string::npos) { |
| 890 | last_img_slash = base_img.rfind('@'); |
| 891 | } |
| 892 | |
| 893 | // Get the prefix, which is the primary image name (without path components). Strip the |
| 894 | // extension. |
| 895 | std::string prefix = base_img.substr(last_img_slash + 1); |
| 896 | if (prefix.rfind('.') != std::string::npos) { |
| 897 | prefix = prefix.substr(0, prefix.rfind('.')); |
| 898 | } |
| 899 | if (!prefix.empty()) { |
| 900 | prefix = prefix + "-"; |
| 901 | } |
| 902 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 903 | base_img = base_img.substr(0, last_img_slash + 1); |
| 904 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 905 | // Note: we have some special case here for our testing. We have to inject the differentiating |
| 906 | // parts for the different core images. |
| 907 | std::string infix; // Empty infix by default. |
| 908 | { |
| 909 | // Check the first name. |
| 910 | std::string dex_file = oat_filenames_[0]; |
| 911 | size_t last_dex_slash = dex_file.rfind('/'); |
| 912 | if (last_dex_slash != std::string::npos) { |
| 913 | dex_file = dex_file.substr(last_dex_slash + 1); |
| 914 | } |
| 915 | size_t last_dex_dot = dex_file.rfind('.'); |
| 916 | if (last_dex_dot != std::string::npos) { |
| 917 | dex_file = dex_file.substr(0, last_dex_dot); |
| 918 | } |
| 919 | if (StartsWith(dex_file, "core-")) { |
| 920 | infix = dex_file.substr(strlen("core")); |
| 921 | } |
| 922 | } |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 923 | |
| 924 | // Now create the other names. Use a counted loop to skip the first one. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 925 | for (size_t i = 1; i < dex_locations_.size(); ++i) { |
| 926 | // TODO: Make everything properly std::string. |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 927 | std::string image_name = CreateMultiImageName(dex_locations_[i], prefix, infix, ".art"); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 928 | char_backing_storage_.push_back(base_img + image_name); |
| 929 | image_filenames_.push_back((char_backing_storage_.end() - 1)->c_str()); |
| 930 | |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 931 | std::string oat_name = CreateMultiImageName(dex_locations_[i], prefix, infix, ".oat"); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 932 | char_backing_storage_.push_back(base_oat + oat_name); |
| 933 | oat_filenames_.push_back((char_backing_storage_.end() - 1)->c_str()); |
| 934 | } |
| 935 | } |
| 936 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 937 | // Done with usage checks, enable watchdog if requested |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 938 | if (parser_options->watch_dog_enabled) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 939 | watchdog_.reset(new WatchDog(true)); |
| 940 | } |
| 941 | |
| 942 | // Fill some values into the key-value store for the oat header. |
| 943 | key_value_store_.reset(new SafeMap<std::string, std::string>()); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 944 | } |
| 945 | |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 946 | // Modify the input string in the following way: |
| 947 | // 0) Assume input is /a/b/c.d |
| 948 | // 1) Strip the path -> c.d |
| 949 | // 2) Inject prefix p -> pc.d |
| 950 | // 3) Inject infix i -> pci.d |
| 951 | // 4) Replace suffix with s if it's "jar" -> d == "jar" -> pci.s |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 952 | static std::string CreateMultiImageName(std::string in, |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 953 | const std::string& prefix, |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 954 | const std::string& infix, |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 955 | const char* replace_suffix) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 956 | size_t last_dex_slash = in.rfind('/'); |
| 957 | if (last_dex_slash != std::string::npos) { |
| 958 | in = in.substr(last_dex_slash + 1); |
| 959 | } |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 960 | if (!prefix.empty()) { |
| 961 | in = prefix + in; |
| 962 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 963 | if (!infix.empty()) { |
| 964 | // Inject infix. |
| 965 | size_t last_dot = in.rfind('.'); |
| 966 | if (last_dot != std::string::npos) { |
| 967 | in.insert(last_dot, infix); |
| 968 | } |
| 969 | } |
| 970 | if (EndsWith(in, ".jar")) { |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 971 | in = in.substr(0, in.length() - strlen(".jar")) + |
| 972 | (replace_suffix != nullptr ? replace_suffix : ""); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 973 | } |
| 974 | return in; |
| 975 | } |
| 976 | |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 977 | void InsertCompileOptions(int argc, char** argv) { |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 978 | std::ostringstream oss; |
| 979 | for (int i = 0; i < argc; ++i) { |
| 980 | if (i > 0) { |
| 981 | oss << ' '; |
| 982 | } |
| 983 | oss << argv[i]; |
| 984 | } |
| 985 | key_value_store_->Put(OatHeader::kDex2OatCmdLineKey, oss.str()); |
| 986 | oss.str(""); // Reset. |
| 987 | oss << kRuntimeISA; |
| 988 | key_value_store_->Put(OatHeader::kDex2OatHostKey, oss.str()); |
| 989 | key_value_store_->Put( |
| 990 | OatHeader::kPicKey, |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 991 | compiler_options_->compile_pic_ ? OatHeader::kTrueValue : OatHeader::kFalseValue); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 992 | key_value_store_->Put( |
| 993 | OatHeader::kDebuggableKey, |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 994 | compiler_options_->debuggable_ ? OatHeader::kTrueValue : OatHeader::kFalseValue); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 995 | } |
| 996 | |
| 997 | // Parse the arguments from the command line. In case of an unrecognized option or impossible |
| 998 | // values/combinations, a usage error will be displayed and exit() is called. Thus, if the method |
| 999 | // returns, arguments have been successfully parsed. |
| 1000 | void ParseArgs(int argc, char** argv) { |
| 1001 | original_argc = argc; |
| 1002 | original_argv = argv; |
| 1003 | |
| 1004 | InitLogging(argv); |
| 1005 | |
| 1006 | // Skip over argv[0]. |
| 1007 | argv++; |
| 1008 | argc--; |
| 1009 | |
| 1010 | if (argc == 0) { |
| 1011 | Usage("No arguments specified"); |
| 1012 | } |
| 1013 | |
| 1014 | std::unique_ptr<ParserOptions> parser_options(new ParserOptions()); |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 1015 | compiler_options_.reset(new CompilerOptions()); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1016 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1017 | bool multi_image = false; |
| 1018 | |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1019 | for (int i = 0; i < argc; i++) { |
| 1020 | const StringPiece option(argv[i]); |
| 1021 | const bool log_options = false; |
| 1022 | if (log_options) { |
| 1023 | LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i]; |
| 1024 | } |
| 1025 | if (option.starts_with("--dex-file=")) { |
| 1026 | dex_filenames_.push_back(option.substr(strlen("--dex-file=")).data()); |
| 1027 | } else if (option.starts_with("--dex-location=")) { |
| 1028 | dex_locations_.push_back(option.substr(strlen("--dex-location=")).data()); |
| 1029 | } else if (option.starts_with("--zip-fd=")) { |
| 1030 | ParseZipFd(option); |
| 1031 | } else if (option.starts_with("--zip-location=")) { |
| 1032 | zip_location_ = option.substr(strlen("--zip-location=")).data(); |
| 1033 | } else if (option.starts_with("--oat-file=")) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1034 | oat_filenames_.push_back(option.substr(strlen("--oat-file=")).data()); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1035 | } else if (option.starts_with("--oat-symbols=")) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1036 | parser_options->oat_symbols.push_back(option.substr(strlen("--oat-symbols=")).data()); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1037 | } else if (option.starts_with("--oat-fd=")) { |
| 1038 | ParseOatFd(option); |
| 1039 | } else if (option == "--watch-dog") { |
| 1040 | parser_options->watch_dog_enabled = true; |
| 1041 | } else if (option == "--no-watch-dog") { |
| 1042 | parser_options->watch_dog_enabled = false; |
| 1043 | } else if (option.starts_with("-j")) { |
| 1044 | ParseJ(option); |
| 1045 | } else if (option.starts_with("--oat-location=")) { |
| 1046 | oat_location_ = option.substr(strlen("--oat-location=")).data(); |
| 1047 | } else if (option.starts_with("--image=")) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1048 | image_filenames_.push_back(option.substr(strlen("--image=")).data()); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1049 | } else if (option.starts_with("--image-classes=")) { |
| 1050 | image_classes_filename_ = option.substr(strlen("--image-classes=")).data(); |
| 1051 | } else if (option.starts_with("--image-classes-zip=")) { |
| 1052 | image_classes_zip_filename_ = option.substr(strlen("--image-classes-zip=")).data(); |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 1053 | } else if (option.starts_with("--image-format=")) { |
| 1054 | ParseImageFormat(option); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1055 | } else if (option.starts_with("--compiled-classes=")) { |
| 1056 | compiled_classes_filename_ = option.substr(strlen("--compiled-classes=")).data(); |
| 1057 | } else if (option.starts_with("--compiled-classes-zip=")) { |
| 1058 | compiled_classes_zip_filename_ = option.substr(strlen("--compiled-classes-zip=")).data(); |
| 1059 | } else if (option.starts_with("--compiled-methods=")) { |
| 1060 | compiled_methods_filename_ = option.substr(strlen("--compiled-methods=")).data(); |
| 1061 | } else if (option.starts_with("--compiled-methods-zip=")) { |
| 1062 | compiled_methods_zip_filename_ = option.substr(strlen("--compiled-methods-zip=")).data(); |
| 1063 | } else if (option.starts_with("--base=")) { |
| 1064 | ParseBase(option); |
| 1065 | } else if (option.starts_with("--boot-image=")) { |
| 1066 | parser_options->boot_image_filename = option.substr(strlen("--boot-image=")).data(); |
| 1067 | } else if (option.starts_with("--android-root=")) { |
| 1068 | android_root_ = option.substr(strlen("--android-root=")).data(); |
| 1069 | } else if (option.starts_with("--instruction-set=")) { |
| 1070 | ParseInstructionSet(option); |
| 1071 | } else if (option.starts_with("--instruction-set-variant=")) { |
| 1072 | ParseInstructionSetVariant(option, parser_options.get()); |
| 1073 | } else if (option.starts_with("--instruction-set-features=")) { |
| 1074 | ParseInstructionSetFeatures(option, parser_options.get()); |
| 1075 | } else if (option.starts_with("--compiler-backend=")) { |
| 1076 | ParseCompilerBackend(option, parser_options.get()); |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 1077 | } else if (option.starts_with("--profile-file=")) { |
Calin Juravle | 998c216 | 2015-12-21 15:39:33 +0200 | [diff] [blame] | 1078 | profile_files_.push_back(option.substr(strlen("--profile-file=")).ToString()); |
| 1079 | } else if (option.starts_with("--reference-profile-file=")) { |
| 1080 | reference_profile_files_.push_back( |
| 1081 | option.substr(strlen("--reference-profile-file=")).ToString()); |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 1082 | } else if (option == "--no-profile-file") { |
| 1083 | // No profile |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1084 | } else if (option == "--host") { |
| 1085 | is_host_ = true; |
| 1086 | } else if (option == "--runtime-arg") { |
| 1087 | if (++i >= argc) { |
| 1088 | Usage("Missing required argument for --runtime-arg"); |
| 1089 | } |
| 1090 | if (log_options) { |
| 1091 | LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i]; |
| 1092 | } |
| 1093 | runtime_args_.push_back(argv[i]); |
| 1094 | } else if (option == "--dump-timing") { |
| 1095 | dump_timing_ = true; |
| 1096 | } else if (option == "--dump-passes") { |
| 1097 | dump_passes_ = true; |
| 1098 | } else if (option.starts_with("--dump-cfg=")) { |
| 1099 | dump_cfg_file_name_ = option.substr(strlen("--dump-cfg=")).data(); |
Calin Juravle | 87000a9 | 2015-08-24 15:34:44 +0100 | [diff] [blame] | 1100 | } else if (option.starts_with("--dump-cfg-append")) { |
| 1101 | dump_cfg_append_ = true; |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1102 | } else if (option == "--dump-stats") { |
| 1103 | dump_stats_ = true; |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 1104 | } else if (option.starts_with("--swap-file=")) { |
| 1105 | swap_file_name_ = option.substr(strlen("--swap-file=")).data(); |
| 1106 | } else if (option.starts_with("--swap-fd=")) { |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1107 | ParseUintOption(option, "--swap-fd", &swap_fd_, Usage); |
| 1108 | } else if (option.starts_with("--app-image-file=")) { |
| 1109 | app_image_file_name_ = option.substr(strlen("--app-image-file=")).data(); |
| 1110 | } else if (option.starts_with("--app-image-fd=")) { |
| 1111 | ParseUintOption(option, "--app-image-fd", &app_image_fd_, Usage); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1112 | } else if (option.starts_with("--verbose-methods=")) { |
| 1113 | // TODO: rather than switch off compiler logging, make all VLOG(compiler) messages |
| 1114 | // conditional on having verbost methods. |
| 1115 | gLogVerbosity.compiler = false; |
| 1116 | Split(option.substr(strlen("--verbose-methods=")).ToString(), ',', &verbose_methods_); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1117 | } else if (option == "--multi-image") { |
| 1118 | multi_image = true; |
| 1119 | } else if (option.starts_with("--no-inline-from=")) { |
| 1120 | no_inline_from_string_ = option.substr(strlen("--no-inline-from=")).data(); |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 1121 | } else if (!compiler_options_->ParseCompilerOption(option, Usage)) { |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1122 | Usage("Unknown argument %s", option.data()); |
| 1123 | } |
| 1124 | } |
| 1125 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1126 | ProcessOptions(parser_options.get(), multi_image); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1127 | |
| 1128 | // Insert some compiler things. |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 1129 | InsertCompileOptions(argc, argv); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1130 | } |
| 1131 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1132 | // Check whether the oat output files are writable, and open them for later. Also open a swap |
| 1133 | // file, if a name is given. |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1134 | bool OpenFile() { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1135 | bool create_file = oat_fd_ == -1; // as opposed to using open file descriptor |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1136 | if (create_file) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1137 | for (const char* oat_filename : oat_filenames_) { |
| 1138 | std::unique_ptr<File> oat_file(OS::CreateEmptyFile(oat_filename)); |
| 1139 | if (oat_file.get() == nullptr) { |
| 1140 | PLOG(ERROR) << "Failed to create oat file: " << oat_filename; |
| 1141 | return false; |
| 1142 | } |
| 1143 | if (create_file && fchmod(oat_file->Fd(), 0644) != 0) { |
| 1144 | PLOG(ERROR) << "Failed to make oat file world readable: " << oat_filename; |
| 1145 | oat_file->Erase(); |
| 1146 | return false; |
| 1147 | } |
| 1148 | oat_files_.push_back(std::move(oat_file)); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1149 | } |
| 1150 | } else { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1151 | std::unique_ptr<File> oat_file(new File(oat_fd_, oat_location_, true)); |
| 1152 | oat_file->DisableAutoClose(); |
| 1153 | if (oat_file->SetLength(0) != 0) { |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 1154 | PLOG(WARNING) << "Truncating oat file " << oat_location_ << " failed."; |
| 1155 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1156 | if (oat_file.get() == nullptr) { |
| 1157 | PLOG(ERROR) << "Failed to create oat file: " << oat_location_; |
| 1158 | return false; |
| 1159 | } |
| 1160 | if (create_file && fchmod(oat_file->Fd(), 0644) != 0) { |
| 1161 | PLOG(ERROR) << "Failed to make oat file world readable: " << oat_location_; |
| 1162 | oat_file->Erase(); |
| 1163 | return false; |
| 1164 | } |
| 1165 | oat_filenames_.push_back(oat_location_.c_str()); |
| 1166 | oat_files_.push_back(std::move(oat_file)); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1167 | } |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 1168 | |
| 1169 | // Swap file handling. |
| 1170 | // |
| 1171 | // If the swap fd is not -1, we assume this is the file descriptor of an open but unlinked file |
| 1172 | // that we can use for swap. |
| 1173 | // |
| 1174 | // If the swap fd is -1 and we have a swap-file string, open the given file as a swap file. We |
| 1175 | // will immediately unlink to satisfy the swap fd assumption. |
| 1176 | if (swap_fd_ == -1 && !swap_file_name_.empty()) { |
| 1177 | std::unique_ptr<File> swap_file(OS::CreateEmptyFile(swap_file_name_.c_str())); |
| 1178 | if (swap_file.get() == nullptr) { |
| 1179 | PLOG(ERROR) << "Failed to create swap file: " << swap_file_name_; |
| 1180 | return false; |
| 1181 | } |
| 1182 | swap_fd_ = swap_file->Fd(); |
| 1183 | swap_file->MarkUnchecked(); // We don't we to track this, it will be unlinked immediately. |
| 1184 | swap_file->DisableAutoClose(); // We'll handle it ourselves, the File object will be |
| 1185 | // released immediately. |
| 1186 | unlink(swap_file_name_.c_str()); |
| 1187 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1188 | return true; |
| 1189 | } |
| 1190 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1191 | void EraseOatFiles() { |
| 1192 | for (size_t i = 0; i < oat_files_.size(); ++i) { |
| 1193 | DCHECK(oat_files_[i].get() != nullptr); |
| 1194 | oat_files_[i]->Erase(); |
| 1195 | oat_files_[i].reset(); |
| 1196 | } |
Andreas Gampe | a650e70 | 2014-12-03 14:28:02 -0800 | [diff] [blame] | 1197 | } |
| 1198 | |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1199 | void Shutdown() { |
| 1200 | ScopedObjectAccess soa(Thread::Current()); |
| 1201 | for (jobject dex_cache : dex_caches_) { |
| 1202 | soa.Env()->DeleteLocalRef(dex_cache); |
| 1203 | } |
| 1204 | dex_caches_.clear(); |
| 1205 | } |
| 1206 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1207 | // Set up the environment for compilation. Includes starting the runtime and loading/opening the |
| 1208 | // boot class path. |
| 1209 | bool Setup() { |
| 1210 | TimingLogger::ScopedTiming t("dex2oat Setup", timings_); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1211 | art::MemMap::Init(); // For ZipEntry::ExtractToMemMap. |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1212 | |
| 1213 | if (!PrepareImageClasses() || !PrepareCompiledClasses() || !PrepareCompiledMethods()) { |
| 1214 | return false; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1215 | } |
Brian Carlstrom | d76e083 | 2013-08-29 15:17:42 -0700 | [diff] [blame] | 1216 | |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 1217 | verification_results_.reset(new VerificationResults(compiler_options_.get())); |
Andreas Gampe | 4585f87 | 2015-03-27 23:45:15 -0700 | [diff] [blame] | 1218 | callbacks_.reset(new QuickCompilerCallbacks( |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 1219 | verification_results_.get(), |
Andreas Gampe | 4585f87 | 2015-03-27 23:45:15 -0700 | [diff] [blame] | 1220 | &method_inliner_map_, |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1221 | IsBootImage() ? |
Andreas Gampe | 4585f87 | 2015-03-27 23:45:15 -0700 | [diff] [blame] | 1222 | CompilerCallbacks::CallbackMode::kCompileBootImage : |
| 1223 | CompilerCallbacks::CallbackMode::kCompileApp)); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1224 | |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1225 | RuntimeArgumentMap runtime_options; |
| 1226 | if (!PrepareRuntimeOptions(&runtime_options)) { |
| 1227 | return false; |
Andreas Gampe | 1d00add | 2015-02-27 19:35:46 -0800 | [diff] [blame] | 1228 | } |
| 1229 | |
Andreas Gampe | c7ae55d | 2015-09-15 20:04:54 -0700 | [diff] [blame] | 1230 | { |
| 1231 | TimingLogger::ScopedTiming t_runtime("Create runtime", timings_); |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1232 | if (!CreateRuntime(std::move(runtime_options))) { |
Andreas Gampe | c7ae55d | 2015-09-15 20:04:54 -0700 | [diff] [blame] | 1233 | return false; |
| 1234 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1235 | } |
| 1236 | |
| 1237 | // Runtime::Create acquired the mutator_lock_ that is normally given away when we |
| 1238 | // Runtime::Start, give it away now so that we don't starve GC. |
| 1239 | Thread* self = Thread::Current(); |
| 1240 | self->TransitionFromRunnableToSuspended(kNative); |
| 1241 | // If we're doing the image, override the compiler filter to force full compilation. Must be |
| 1242 | // done ahead of WellKnownClasses::Init that causes verification. Note: doesn't force |
| 1243 | // compilation of class initializers. |
| 1244 | // Whilst we're in native take the opportunity to initialize well known classes. |
| 1245 | WellKnownClasses::Init(self->GetJniEnv()); |
| 1246 | |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1247 | ClassLinker* const class_linker = Runtime::Current()->GetClassLinker(); |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1248 | if (boot_image_filename_.empty()) { |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1249 | dex_files_ = class_linker->GetBootClassPath(); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1250 | } else { |
Andreas Gampe | c7ae55d | 2015-09-15 20:04:54 -0700 | [diff] [blame] | 1251 | TimingLogger::ScopedTiming t_dex("Opening dex files", timings_); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1252 | if (dex_filenames_.empty()) { |
| 1253 | ATRACE_BEGIN("Opening zip archive from file descriptor"); |
| 1254 | std::string error_msg; |
| 1255 | std::unique_ptr<ZipArchive> zip_archive(ZipArchive::OpenFromFd(zip_fd_, |
| 1256 | zip_location_.c_str(), |
| 1257 | &error_msg)); |
| 1258 | if (zip_archive.get() == nullptr) { |
| 1259 | LOG(ERROR) << "Failed to open zip from file descriptor for '" << zip_location_ << "': " |
| 1260 | << error_msg; |
| 1261 | return false; |
Brian Carlstrom | f79fccb | 2014-02-20 08:55:10 -0800 | [diff] [blame] | 1262 | } |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1263 | if (!DexFile::OpenFromZip(*zip_archive.get(), zip_location_, &error_msg, &opened_dex_files_)) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1264 | LOG(ERROR) << "Failed to open dex from file descriptor for zip file '" << zip_location_ |
| 1265 | << "': " << error_msg; |
| 1266 | return false; |
| 1267 | } |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1268 | for (auto& dex_file : opened_dex_files_) { |
| 1269 | dex_files_.push_back(dex_file.get()); |
| 1270 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1271 | ATRACE_END(); |
| 1272 | } else { |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1273 | size_t failure_count = OpenDexFiles(dex_filenames_, dex_locations_, &opened_dex_files_); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1274 | if (failure_count > 0) { |
| 1275 | LOG(ERROR) << "Failed to open some dex files: " << failure_count; |
| 1276 | return false; |
| 1277 | } |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1278 | for (auto& dex_file : opened_dex_files_) { |
| 1279 | dex_files_.push_back(dex_file.get()); |
| 1280 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1281 | } |
| 1282 | |
| 1283 | constexpr bool kSaveDexInput = false; |
| 1284 | if (kSaveDexInput) { |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1285 | SaveDexInput(); |
Brian Carlstrom | f79fccb | 2014-02-20 08:55:10 -0800 | [diff] [blame] | 1286 | } |
| 1287 | } |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1288 | // Ensure opened dex files are writable for dex-to-dex transformations. Also ensure that |
| 1289 | // the dex caches stay live since we don't want class unloading to occur during compilation. |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1290 | for (const auto& dex_file : dex_files_) { |
| 1291 | if (!dex_file->EnableWrite()) { |
| 1292 | PLOG(ERROR) << "Failed to make .dex file writeable '" << dex_file->GetLocation() << "'\n"; |
Andreas Gampe | 7ba6496 | 2014-10-23 11:37:40 -0700 | [diff] [blame] | 1293 | } |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1294 | ScopedObjectAccess soa(self); |
| 1295 | dex_caches_.push_back(soa.AddLocalReference<jobject>( |
Mathieu Chartier | d57d454 | 2015-10-14 10:55:30 -0700 | [diff] [blame] | 1296 | class_linker->RegisterDexFile(*dex_file, Runtime::Current()->GetLinearAlloc()))); |
Artem Udovichenko | d9786b0 | 2015-10-14 16:36:55 +0300 | [diff] [blame] | 1297 | dex_file->CreateTypeLookupTable(); |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 1298 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1299 | |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 1300 | // If we use a swap file, ensure we are above the threshold to make it necessary. |
| 1301 | if (swap_fd_ != -1) { |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1302 | if (!UseSwap(IsBootImage(), dex_files_)) { |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 1303 | close(swap_fd_); |
| 1304 | swap_fd_ = -1; |
Andreas Gampe | f99bcd2 | 2015-04-24 16:22:18 -0700 | [diff] [blame] | 1305 | VLOG(compiler) << "Decided to run without swap."; |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 1306 | } else { |
Andreas Gampe | f99bcd2 | 2015-04-24 16:22:18 -0700 | [diff] [blame] | 1307 | LOG(INFO) << "Large app, accepted running with swap."; |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 1308 | } |
| 1309 | } |
| 1310 | // Note that dex2oat won't close the swap_fd_. The compiler driver's swap space will do that. |
| 1311 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1312 | /* |
| 1313 | * If we're not in interpret-only or verify-none mode, go ahead and compile small applications. |
| 1314 | * Don't bother to check if we're doing the image. |
| 1315 | */ |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1316 | if (!IsBootImage() && |
Brian Carlstrom | 95b033b | 2014-12-03 22:29:37 -0800 | [diff] [blame] | 1317 | compiler_options_->IsCompilationEnabled() && |
| 1318 | compiler_kind_ == Compiler::kQuick) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1319 | size_t num_methods = 0; |
| 1320 | for (size_t i = 0; i != dex_files_.size(); ++i) { |
| 1321 | const DexFile* dex_file = dex_files_[i]; |
| 1322 | CHECK(dex_file != nullptr); |
| 1323 | num_methods += dex_file->NumMethodIds(); |
| 1324 | } |
| 1325 | if (num_methods <= compiler_options_->GetNumDexMethodsThreshold()) { |
| 1326 | compiler_options_->SetCompilerFilter(CompilerOptions::kSpeed); |
| 1327 | VLOG(compiler) << "Below method threshold, compiling anyways"; |
| 1328 | } |
| 1329 | } |
| 1330 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1331 | // Organize inputs, handling multi-dex and multiple oat file outputs. |
| 1332 | CreateDexOatMappings(); |
| 1333 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1334 | return true; |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 1335 | } |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 1336 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1337 | void CreateDexOatMappings() { |
| 1338 | if (oat_files_.size() > 1) { |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1339 | // TODO: This needs to change, as it is not a stable mapping. If a dex file is missing, |
| 1340 | // the images will be out of whack. b/26317072 |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1341 | size_t index = 0; |
| 1342 | for (size_t i = 0; i < oat_files_.size(); ++i) { |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1343 | std::vector<const DexFile*> dex_files; |
| 1344 | if (index < dex_files_.size()) { |
Nicolas Geoffray | de38b79 | 2015-12-30 14:50:12 +0000 | [diff] [blame] | 1345 | dex_files.push_back(dex_files_[index]); |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1346 | dex_file_oat_filename_map_.emplace(dex_files_[index], oat_filenames_[i]); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1347 | index++; |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1348 | while (index < dex_files_.size() && |
| 1349 | (dex_files_[index]->GetBaseLocation() == dex_files_[index - 1]->GetBaseLocation())) { |
| 1350 | dex_file_oat_filename_map_.emplace(dex_files_[index], oat_filenames_[i]); |
| 1351 | dex_files.push_back(dex_files_[index]); |
| 1352 | index++; |
| 1353 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1354 | } |
| 1355 | dex_files_per_oat_file_.push_back(std::move(dex_files)); |
| 1356 | } |
| 1357 | } else { |
| 1358 | dex_files_per_oat_file_.push_back(dex_files_); |
| 1359 | for (const DexFile* dex_file : dex_files_) { |
| 1360 | dex_file_oat_filename_map_.emplace(dex_file, oat_filenames_[0]); |
| 1361 | } |
| 1362 | } |
| 1363 | } |
| 1364 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1365 | // Create and invoke the compiler driver. This will compile all the dex files. |
| 1366 | void Compile() { |
| 1367 | TimingLogger::ScopedTiming t("dex2oat Compile", timings_); |
| 1368 | compiler_phases_timings_.reset(new CumulativeLogger("compilation times")); |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1369 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1370 | // Handle and ClassLoader creation needs to come after Runtime::Create |
| 1371 | jobject class_loader = nullptr; |
Mathieu Chartier | d37d364 | 2015-11-19 16:05:58 -0800 | [diff] [blame] | 1372 | jobject class_path_class_loader = nullptr; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1373 | Thread* self = Thread::Current(); |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1374 | |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1375 | if (!boot_image_filename_.empty()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1376 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1377 | OpenClassPathFiles(runtime_->GetClassPathString(), dex_files_, &class_path_files_); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1378 | ScopedObjectAccess soa(self); |
Andreas Gampe | 81c6f8d | 2015-03-25 17:19:53 -0700 | [diff] [blame] | 1379 | |
| 1380 | // Classpath: first the class-path given. |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1381 | std::vector<const DexFile*> class_path_files = MakeNonOwningPointerVector(class_path_files_); |
Andreas Gampe | 7848da4 | 2015-04-09 11:15:04 -0700 | [diff] [blame] | 1382 | |
| 1383 | // Store the classpath we have right now. |
| 1384 | key_value_store_->Put(OatHeader::kClassPathKey, |
| 1385 | OatFile::EncodeDexFileDependencies(class_path_files)); |
| 1386 | |
Mathieu Chartier | d37d364 | 2015-11-19 16:05:58 -0800 | [diff] [blame] | 1387 | class_path_class_loader = class_linker->CreatePathClassLoader(self, |
| 1388 | class_path_files, |
| 1389 | nullptr); |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1390 | |
Mathieu Chartier | d37d364 | 2015-11-19 16:05:58 -0800 | [diff] [blame] | 1391 | // Class path loader as parent so that we'll resolve there first. |
| 1392 | class_loader = class_linker->CreatePathClassLoader(self, dex_files_, class_path_class_loader); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1393 | } |
| 1394 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1395 | // Find the dex file we should not inline from. |
| 1396 | |
| 1397 | // For now, on the host always have core-oj removed. |
| 1398 | if (!kIsTargetBuild && no_inline_from_string_.empty()) { |
| 1399 | no_inline_from_string_ = "core-oj"; |
| 1400 | } |
| 1401 | |
| 1402 | if (!no_inline_from_string_.empty()) { |
| 1403 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| 1404 | std::vector<const DexFile*> class_path_files = MakeNonOwningPointerVector(class_path_files_); |
| 1405 | std::vector<const std::vector<const DexFile*>*> dex_file_vectors = { |
| 1406 | &class_linker->GetBootClassPath(), |
| 1407 | &class_path_files, |
| 1408 | &dex_files_ |
| 1409 | }; |
| 1410 | for (const std::vector<const DexFile*>* dex_file_vector : dex_file_vectors) { |
| 1411 | if (dex_file_vector == nullptr) { |
| 1412 | continue; |
| 1413 | } |
| 1414 | |
| 1415 | bool found = false; |
| 1416 | |
| 1417 | for (const DexFile* dex_file : *dex_file_vector) { |
| 1418 | // Try the complete location first. |
| 1419 | found = no_inline_from_string_ == dex_file->GetLocation(); |
| 1420 | // The try just the name. |
| 1421 | if (!found) { |
| 1422 | size_t last_slash = dex_file->GetLocation().rfind('/'); |
| 1423 | if (last_slash != std::string::npos) { |
| 1424 | found = StartsWith(dex_file->GetLocation().substr(last_slash + 1), |
| 1425 | no_inline_from_string_.c_str()); |
| 1426 | } |
| 1427 | } |
| 1428 | |
| 1429 | if (found) { |
| 1430 | VLOG(compiler) << "Disabling inlining from " << dex_file->GetLocation(); |
| 1431 | compiler_options_->no_inline_from_ = dex_file; |
| 1432 | break; |
| 1433 | } |
| 1434 | } |
| 1435 | |
| 1436 | if (found) { |
| 1437 | break; |
| 1438 | } |
| 1439 | } |
| 1440 | } |
| 1441 | |
| 1442 | if (IsBootImage() && image_filenames_.size() > 1) { |
| 1443 | // If we're compiling the boot image, store the boot classpath into the Key-Value store. If |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1444 | // the image filename was adapted (e.g., for our tests), we need to change this here, too, but |
| 1445 | // need to strip all path components (they will be re-established when loading). |
| 1446 | // We need this for the multi-image case. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1447 | std::ostringstream bootcp_oss; |
| 1448 | bool first_bootcp = true; |
| 1449 | for (size_t i = 0; i < dex_locations_.size(); ++i) { |
| 1450 | if (!first_bootcp) { |
| 1451 | bootcp_oss << ":"; |
| 1452 | } |
| 1453 | |
| 1454 | std::string dex_loc = dex_locations_[i]; |
| 1455 | std::string image_filename = image_filenames_[i]; |
| 1456 | |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1457 | // Use the dex_loc path, but the image_filename name (without path elements). |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1458 | size_t dex_last_slash = dex_loc.rfind('/'); |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1459 | |
| 1460 | // npos is max(size_t). That makes this a bit ugly. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1461 | size_t image_last_slash = image_filename.rfind('/'); |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1462 | size_t image_last_at = image_filename.rfind('@'); |
| 1463 | size_t image_last_sep = (image_last_slash == std::string::npos) |
| 1464 | ? image_last_at |
| 1465 | : (image_last_at == std::string::npos) |
| 1466 | ? std::string::npos |
| 1467 | : std::max(image_last_slash, image_last_at); |
| 1468 | // Note: whenever image_last_sep == npos, +1 overflow means using the full string. |
| 1469 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1470 | if (dex_last_slash == std::string::npos) { |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1471 | dex_loc = image_filename.substr(image_last_sep + 1); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1472 | } else { |
| 1473 | dex_loc = dex_loc.substr(0, dex_last_slash + 1) + |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1474 | image_filename.substr(image_last_sep + 1); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1475 | } |
| 1476 | |
| 1477 | // Image filenames already end with .art, no need to replace. |
| 1478 | |
| 1479 | bootcp_oss << dex_loc; |
| 1480 | first_bootcp = false; |
| 1481 | } |
| 1482 | key_value_store_->Put(OatHeader::kBootClassPath, bootcp_oss.str()); |
| 1483 | } |
| 1484 | |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 1485 | driver_.reset(new CompilerDriver(compiler_options_.get(), |
| 1486 | verification_results_.get(), |
| 1487 | &method_inliner_map_, |
| 1488 | compiler_kind_, |
| 1489 | instruction_set_, |
| 1490 | instruction_set_features_.get(), |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1491 | IsBootImage(), |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 1492 | image_classes_.release(), |
| 1493 | compiled_classes_.release(), |
| 1494 | nullptr, |
| 1495 | thread_count_, |
| 1496 | dump_stats_, |
| 1497 | dump_passes_, |
| 1498 | dump_cfg_file_name_, |
| 1499 | dump_cfg_append_, |
| 1500 | compiler_phases_timings_.get(), |
| 1501 | swap_fd_, |
Calin Juravle | 998c216 | 2015-12-21 15:39:33 +0200 | [diff] [blame] | 1502 | &dex_file_oat_filename_map_, |
| 1503 | profile_compilation_info_.get())); |
Vladimir Marko | d1eaf0d | 2015-10-29 12:18:29 +0000 | [diff] [blame] | 1504 | driver_->SetDexFilesForOatFile(dex_files_); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1505 | driver_->CompileAll(class_loader, dex_files_, timings_); |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1506 | } |
| 1507 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1508 | // TODO: Update comments about how this works for multi image. b/26317072 |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1509 | // Notes on the interleaving of creating the image and oat file to |
| 1510 | // ensure the references between the two are correct. |
| 1511 | // |
| 1512 | // Currently we have a memory layout that looks something like this: |
| 1513 | // |
| 1514 | // +--------------+ |
| 1515 | // | image | |
| 1516 | // +--------------+ |
| 1517 | // | boot oat | |
| 1518 | // +--------------+ |
| 1519 | // | alloc spaces | |
| 1520 | // +--------------+ |
| 1521 | // |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 1522 | // 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] | 1523 | // |
| 1524 | // 1. The image is expected to be loaded at an absolute address and |
| 1525 | // contains Objects with absolute pointers within the image. |
| 1526 | // |
| 1527 | // 2. There are absolute pointers from Methods in the image to their |
| 1528 | // code in the oat. |
| 1529 | // |
| 1530 | // 3. There are absolute pointers from the code in the oat to Methods |
| 1531 | // in the image. |
| 1532 | // |
| 1533 | // 4. There are absolute pointers from code in the oat to other code |
| 1534 | // in the oat. |
| 1535 | // |
| 1536 | // To get this all correct, we go through several steps. |
| 1537 | // |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1538 | // 1. We prepare offsets for all data in the oat file and calculate |
| 1539 | // the oat data size and code size. During this stage, we also set |
| 1540 | // oat code offsets in methods for use by the image writer. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1541 | // |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1542 | // 2. We prepare offsets for the objects in the image and calculate |
| 1543 | // the image size. |
| 1544 | // |
| 1545 | // 3. We create the oat file. Originally this was just our own proprietary |
| 1546 | // file but now it is contained within an ELF dynamic object (aka an .so |
| 1547 | // file). Since we know the image size and oat data size and code size we |
| 1548 | // can prepare the ELF headers and we then know the ELF memory segment |
| 1549 | // layout and we can now resolve all references. The compiler provides |
| 1550 | // LinkerPatch information in each CompiledMethod and we resolve these, |
| 1551 | // using the layout information and image object locations provided by |
| 1552 | // image writer, as we're writing the method code. |
| 1553 | // |
| 1554 | // 4. We create the image file. It needs to know where the oat file |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1555 | // will be loaded after itself. Originally when oat file was simply |
| 1556 | // memory mapped so we could predict where its contents were based |
| 1557 | // on the file size. Now that it is an ELF file, we need to inspect |
| 1558 | // the ELF file to understand the in memory segment layout including |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1559 | // where the oat header is located within. |
| 1560 | // TODO: We could just remember this information from step 3. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1561 | // |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1562 | // 5. We fixup the ELF program headers so that dlopen will try to |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1563 | // load the .so at the desired location at runtime by offsetting the |
| 1564 | // Elf32_Phdr.p_vaddr values by the desired base address. |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1565 | // TODO: Do this in step 3. We already know the layout there. |
| 1566 | // |
| 1567 | // Steps 1.-3. are done by the CreateOatFile() above, steps 4.-5. |
| 1568 | // are done by the CreateImageFile() below. |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1569 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1570 | // Write out the generated code part. Calls the OatWriter and ElfBuilder. Also prepares the |
| 1571 | // ImageWriter, if necessary. |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 1572 | // Note: Flushing (and closing) the file is the caller's responsibility, except for the failure |
| 1573 | // case (when the file will be explicitly erased). |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1574 | bool CreateOatFiles() { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1575 | CHECK(key_value_store_.get() != nullptr); |
| 1576 | |
| 1577 | TimingLogger::ScopedTiming t("dex2oat Oat", timings_); |
| 1578 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1579 | std::vector<std::unique_ptr<OatWriter>> oat_writers; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1580 | { |
| 1581 | TimingLogger::ScopedTiming t2("dex2oat OatWriter", timings_); |
| 1582 | std::string image_file_location; |
| 1583 | uint32_t image_file_location_oat_checksum = 0; |
| 1584 | uintptr_t image_file_location_oat_data_begin = 0; |
| 1585 | int32_t image_patch_delta = 0; |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1586 | |
| 1587 | if (app_image_ && image_base_ == 0) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1588 | std::vector<gc::space::ImageSpace*> image_spaces = |
| 1589 | Runtime::Current()->GetHeap()->GetBootImageSpaces(); |
| 1590 | for (gc::space::ImageSpace* image_space : image_spaces) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1591 | image_base_ = std::max(image_base_, RoundUp( |
| 1592 | reinterpret_cast<uintptr_t>(image_space->GetImageHeader().GetOatFileEnd()), |
| 1593 | kPageSize)); |
| 1594 | } |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1595 | VLOG(compiler) << "App image base=" << reinterpret_cast<void*>(image_base_); |
| 1596 | } |
| 1597 | |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1598 | if (IsImage()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1599 | PrepareImageWriter(image_base_); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1600 | } |
| 1601 | |
| 1602 | if (!IsBootImage()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1603 | TimingLogger::ScopedTiming t3("Loading image checksum", timings_); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1604 | std::vector<gc::space::ImageSpace*> image_spaces = |
| 1605 | Runtime::Current()->GetHeap()->GetBootImageSpaces(); |
| 1606 | image_file_location_oat_checksum = image_spaces[0]->GetImageHeader().GetOatChecksum(); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1607 | image_file_location_oat_data_begin = |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1608 | reinterpret_cast<uintptr_t>(image_spaces[0]->GetImageHeader().GetOatDataBegin()); |
| 1609 | image_patch_delta = image_spaces[0]->GetImageHeader().GetPatchDelta(); |
| 1610 | std::vector<std::string> image_filenames; |
| 1611 | for (const gc::space::ImageSpace* image_space : image_spaces) { |
| 1612 | image_filenames.push_back(image_space->GetImageFilename()); |
| 1613 | } |
| 1614 | image_file_location = Join(image_filenames, ':'); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1615 | } |
| 1616 | |
| 1617 | if (!image_file_location.empty()) { |
| 1618 | key_value_store_->Put(OatHeader::kImageLocationKey, image_file_location); |
| 1619 | } |
| 1620 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1621 | for (size_t i = 0; i < oat_files_.size(); ++i) { |
| 1622 | std::vector<const DexFile*>& dex_files = dex_files_per_oat_file_[i]; |
| 1623 | std::unique_ptr<OatWriter> oat_writer(new OatWriter(dex_files, |
| 1624 | image_file_location_oat_checksum, |
| 1625 | image_file_location_oat_data_begin, |
| 1626 | image_patch_delta, |
| 1627 | driver_.get(), |
| 1628 | image_writer_.get(), |
| 1629 | IsBootImage(), |
| 1630 | timings_, |
| 1631 | key_value_store_.get())); |
| 1632 | oat_writers.push_back(std::move(oat_writer)); |
| 1633 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1634 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1635 | |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1636 | if (IsImage()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1637 | // The OatWriter constructor has already updated offsets in methods and we need to |
| 1638 | // prepare method offsets in the image address space for direct method patching. |
| 1639 | TimingLogger::ScopedTiming t2("dex2oat Prepare image address space", timings_); |
| 1640 | if (!image_writer_->PrepareImageAddressSpace()) { |
| 1641 | LOG(ERROR) << "Failed to prepare image address space."; |
| 1642 | return false; |
| 1643 | } |
| 1644 | } |
| 1645 | |
| 1646 | { |
| 1647 | TimingLogger::ScopedTiming t2("dex2oat Write ELF", timings_); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1648 | for (size_t i = 0; i < oat_files_.size(); ++i) { |
| 1649 | std::unique_ptr<File>& oat_file = oat_files_[i]; |
| 1650 | std::unique_ptr<OatWriter>& oat_writer = oat_writers[i]; |
| 1651 | std::unique_ptr<ElfWriter> elf_writer = |
| 1652 | CreateElfWriterQuick(instruction_set_, compiler_options_.get(), oat_file.get()); |
Vladimir Marko | 10c1356 | 2015-11-25 14:33:36 +0000 | [diff] [blame] | 1653 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1654 | elf_writer->Start(); |
Vladimir Marko | 10c1356 | 2015-11-25 14:33:36 +0000 | [diff] [blame] | 1655 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1656 | OutputStream* rodata = elf_writer->StartRoData(); |
| 1657 | if (!oat_writer->WriteRodata(rodata)) { |
| 1658 | LOG(ERROR) << "Failed to write .rodata section to the ELF file " << oat_file->GetPath(); |
| 1659 | return false; |
| 1660 | } |
| 1661 | elf_writer->EndRoData(rodata); |
Vladimir Marko | 10c1356 | 2015-11-25 14:33:36 +0000 | [diff] [blame] | 1662 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1663 | OutputStream* text = elf_writer->StartText(); |
| 1664 | if (!oat_writer->WriteCode(text)) { |
| 1665 | LOG(ERROR) << "Failed to write .text section to the ELF file " << oat_file->GetPath(); |
| 1666 | return false; |
| 1667 | } |
| 1668 | elf_writer->EndText(text); |
Vladimir Marko | 10c1356 | 2015-11-25 14:33:36 +0000 | [diff] [blame] | 1669 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1670 | elf_writer->SetBssSize(oat_writer->GetBssSize()); |
| 1671 | elf_writer->WriteDynamicSection(); |
| 1672 | elf_writer->WriteDebugInfo(oat_writer->GetMethodDebugInfo()); |
| 1673 | elf_writer->WritePatchLocations(oat_writer->GetAbsolutePatchLocations()); |
Vladimir Marko | 10c1356 | 2015-11-25 14:33:36 +0000 | [diff] [blame] | 1674 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1675 | if (!elf_writer->End()) { |
| 1676 | LOG(ERROR) << "Failed to write ELF file " << oat_file->GetPath(); |
| 1677 | return false; |
| 1678 | } |
| 1679 | |
| 1680 | // Flush the oat file. |
| 1681 | if (oat_files_[i] != nullptr) { |
| 1682 | if (oat_files_[i]->Flush() != 0) { |
| 1683 | PLOG(ERROR) << "Failed to flush oat file: " << oat_filenames_[i]; |
| 1684 | oat_files_[i]->Erase(); |
| 1685 | return false; |
| 1686 | } |
| 1687 | } |
| 1688 | |
| 1689 | if (IsImage()) { |
| 1690 | // Update oat estimates. |
| 1691 | UpdateImageWriter(i); |
| 1692 | } |
| 1693 | |
| 1694 | VLOG(compiler) << "Oat file written successfully: " << oat_filenames_[i]; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1695 | } |
| 1696 | } |
| 1697 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1698 | return true; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1699 | } |
| 1700 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1701 | // If we are compiling an image, invoke the image creation routine. Else just skip. |
| 1702 | bool HandleImage() { |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1703 | if (IsImage()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1704 | TimingLogger::ScopedTiming t("dex2oat ImageWriter", timings_); |
| 1705 | if (!CreateImageFile()) { |
| 1706 | return false; |
| 1707 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1708 | VLOG(compiler) << "Images written successfully"; |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 1709 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1710 | return true; |
| 1711 | } |
| 1712 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1713 | // Create a copy from stripped to unstripped. |
| 1714 | bool CopyStrippedToUnstripped() { |
| 1715 | for (size_t i = 0; i < oat_unstripped_.size(); ++i) { |
| 1716 | // If we don't want to strip in place, copy from stripped location to unstripped location. |
| 1717 | // We need to strip after image creation because FixupElf needs to use .strtab. |
| 1718 | if (strcmp(oat_unstripped_[i], oat_filenames_[i]) != 0) { |
| 1719 | // If the oat file is still open, flush it. |
| 1720 | if (oat_files_[i].get() != nullptr && oat_files_[i]->IsOpened()) { |
| 1721 | if (!FlushCloseOatFile(i)) { |
| 1722 | return false; |
| 1723 | } |
| 1724 | } |
| 1725 | |
| 1726 | TimingLogger::ScopedTiming t("dex2oat OatFile copy", timings_); |
| 1727 | std::unique_ptr<File> in(OS::OpenFileForReading(oat_filenames_[i])); |
| 1728 | std::unique_ptr<File> out(OS::CreateEmptyFile(oat_unstripped_[i])); |
| 1729 | size_t buffer_size = 8192; |
| 1730 | std::unique_ptr<uint8_t[]> buffer(new uint8_t[buffer_size]); |
| 1731 | while (true) { |
| 1732 | int bytes_read = TEMP_FAILURE_RETRY(read(in->Fd(), buffer.get(), buffer_size)); |
| 1733 | if (bytes_read <= 0) { |
| 1734 | break; |
| 1735 | } |
| 1736 | bool write_ok = out->WriteFully(buffer.get(), bytes_read); |
| 1737 | CHECK(write_ok); |
| 1738 | } |
| 1739 | if (out->FlushCloseOrErase() != 0) { |
| 1740 | PLOG(ERROR) << "Failed to flush and close copied oat file: " << oat_unstripped_[i]; |
| 1741 | return false; |
| 1742 | } |
| 1743 | VLOG(compiler) << "Oat file copied successfully (unstripped): " << oat_unstripped_[i]; |
| 1744 | } |
| 1745 | } |
| 1746 | return true; |
| 1747 | } |
| 1748 | |
| 1749 | bool FlushOatFiles() { |
| 1750 | TimingLogger::ScopedTiming t2("dex2oat Flush ELF", timings_); |
| 1751 | for (size_t i = 0; i < oat_files_.size(); ++i) { |
| 1752 | if (oat_files_[i].get() != nullptr) { |
| 1753 | if (oat_files_[i]->Flush() != 0) { |
| 1754 | PLOG(ERROR) << "Failed to flush oat file: " << oat_filenames_[i]; |
| 1755 | oat_files_[i]->Erase(); |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 1756 | return false; |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 1757 | } |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 1758 | } |
Nicolas Geoffray | ea3fa0b | 2014-02-10 11:59:41 +0000 | [diff] [blame] | 1759 | } |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 1760 | return true; |
| 1761 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1762 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1763 | bool FlushCloseOatFile(size_t i) { |
| 1764 | if (oat_files_[i].get() != nullptr) { |
| 1765 | std::unique_ptr<File> tmp(oat_files_[i].release()); |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 1766 | if (tmp->FlushCloseOrErase() != 0) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1767 | PLOG(ERROR) << "Failed to flush and close oat file: " << oat_filenames_[i]; |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 1768 | return false; |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 1769 | } |
| 1770 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1771 | return true; |
| 1772 | } |
| 1773 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1774 | bool FlushCloseOatFiles() { |
| 1775 | bool result = true; |
| 1776 | for (size_t i = 0; i < oat_files_.size(); ++i) { |
| 1777 | result &= FlushCloseOatFile(i); |
| 1778 | } |
| 1779 | return result; |
| 1780 | } |
| 1781 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1782 | void DumpTiming() { |
| 1783 | if (dump_timing_ || (dump_slow_timing_ && timings_->GetTotalNs() > MsToNs(1000))) { |
| 1784 | LOG(INFO) << Dumpable<TimingLogger>(*timings_); |
| 1785 | } |
| 1786 | if (dump_passes_) { |
| 1787 | LOG(INFO) << Dumpable<CumulativeLogger>(*driver_->GetTimingsLogger()); |
| 1788 | } |
| 1789 | } |
| 1790 | |
| 1791 | CompilerOptions* GetCompilerOptions() const { |
| 1792 | return compiler_options_.get(); |
| 1793 | } |
| 1794 | |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 1795 | bool IsImage() const { |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1796 | return IsAppImage() || IsBootImage(); |
| 1797 | } |
| 1798 | |
| 1799 | bool IsAppImage() const { |
| 1800 | return app_image_; |
| 1801 | } |
| 1802 | |
| 1803 | bool IsBootImage() const { |
| 1804 | return boot_image_; |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 1805 | } |
| 1806 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1807 | bool IsHost() const { |
| 1808 | return is_host_; |
| 1809 | } |
| 1810 | |
Calin Juravle | 998c216 | 2015-12-21 15:39:33 +0200 | [diff] [blame] | 1811 | bool UseProfileGuidedCompilation() const { |
| 1812 | return !profile_files_.empty(); |
| 1813 | } |
| 1814 | |
| 1815 | bool ProcessProfiles() { |
| 1816 | DCHECK(UseProfileGuidedCompilation()); |
| 1817 | ProfileCompilationInfo* info = nullptr; |
| 1818 | if (ProfileAssistant::ProcessProfiles(profile_files_, reference_profile_files_, &info)) { |
| 1819 | profile_compilation_info_.reset(info); |
| 1820 | return true; |
| 1821 | } |
| 1822 | return false; |
| 1823 | } |
| 1824 | |
| 1825 | bool ShouldCompileBasedOnProfiles() const { |
| 1826 | DCHECK(UseProfileGuidedCompilation()); |
| 1827 | // If we are given profiles, compile only if we have new information. |
| 1828 | return profile_compilation_info_ != nullptr; |
| 1829 | } |
| 1830 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1831 | private: |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1832 | template <typename T> |
| 1833 | static std::vector<T*> MakeNonOwningPointerVector(const std::vector<std::unique_ptr<T>>& src) { |
| 1834 | std::vector<T*> result; |
| 1835 | result.reserve(src.size()); |
| 1836 | for (const std::unique_ptr<T>& t : src) { |
| 1837 | result.push_back(t.get()); |
| 1838 | } |
| 1839 | return result; |
| 1840 | } |
| 1841 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1842 | static size_t OpenDexFiles(const std::vector<const char*>& dex_filenames, |
| 1843 | const std::vector<const char*>& dex_locations, |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1844 | std::vector<std::unique_ptr<const DexFile>>* dex_files) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1845 | DCHECK(dex_files != nullptr) << "OpenDexFiles out-param is nullptr"; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1846 | size_t failure_count = 0; |
| 1847 | for (size_t i = 0; i < dex_filenames.size(); i++) { |
| 1848 | const char* dex_filename = dex_filenames[i]; |
| 1849 | const char* dex_location = dex_locations[i]; |
| 1850 | ATRACE_BEGIN(StringPrintf("Opening dex file '%s'", dex_filenames[i]).c_str()); |
| 1851 | std::string error_msg; |
| 1852 | if (!OS::FileExists(dex_filename)) { |
| 1853 | LOG(WARNING) << "Skipping non-existent dex file '" << dex_filename << "'"; |
| 1854 | continue; |
| 1855 | } |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1856 | if (!DexFile::Open(dex_filename, dex_location, &error_msg, dex_files)) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1857 | LOG(WARNING) << "Failed to open .dex from file '" << dex_filename << "': " << error_msg; |
| 1858 | ++failure_count; |
| 1859 | } |
| 1860 | ATRACE_END(); |
| 1861 | } |
| 1862 | return failure_count; |
| 1863 | } |
| 1864 | |
Andreas Gampe | e3712d0 | 2015-04-09 14:46:31 -0700 | [diff] [blame] | 1865 | // Returns true if dex_files has a dex with the named location. We compare canonical locations, |
| 1866 | // so that relative and absolute paths will match. Not caching for the dex_files isn't very |
| 1867 | // efficient, but under normal circumstances the list is neither large nor is this part too |
| 1868 | // sensitive. |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1869 | static bool DexFilesContains(const std::vector<const DexFile*>& dex_files, |
| 1870 | const std::string& location) { |
Andreas Gampe | e3712d0 | 2015-04-09 14:46:31 -0700 | [diff] [blame] | 1871 | std::string canonical_location(DexFile::GetDexCanonicalLocation(location.c_str())); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1872 | for (size_t i = 0; i < dex_files.size(); ++i) { |
Andreas Gampe | e3712d0 | 2015-04-09 14:46:31 -0700 | [diff] [blame] | 1873 | if (DexFile::GetDexCanonicalLocation(dex_files[i]->GetLocation().c_str()) == |
| 1874 | canonical_location) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1875 | return true; |
| 1876 | } |
| 1877 | } |
| 1878 | return false; |
| 1879 | } |
| 1880 | |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1881 | // Appends to opened_dex_files any elements of class_path that dex_files |
| 1882 | // doesn't already contain. This will open those dex files as necessary. |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1883 | static void OpenClassPathFiles(const std::string& class_path, |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1884 | std::vector<const DexFile*> dex_files, |
| 1885 | std::vector<std::unique_ptr<const DexFile>>* opened_dex_files) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1886 | DCHECK(opened_dex_files != nullptr) << "OpenClassPathFiles out-param is nullptr"; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1887 | std::vector<std::string> parsed; |
| 1888 | Split(class_path, ':', &parsed); |
| 1889 | // Take Locks::mutator_lock_ so that lock ordering on the ClassLinker::dex_lock_ is maintained. |
| 1890 | ScopedObjectAccess soa(Thread::Current()); |
| 1891 | for (size_t i = 0; i < parsed.size(); ++i) { |
| 1892 | if (DexFilesContains(dex_files, parsed[i])) { |
| 1893 | continue; |
| 1894 | } |
| 1895 | std::string error_msg; |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1896 | if (!DexFile::Open(parsed[i].c_str(), parsed[i].c_str(), &error_msg, opened_dex_files)) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1897 | LOG(WARNING) << "Failed to open dex file '" << parsed[i] << "': " << error_msg; |
| 1898 | } |
| 1899 | } |
| 1900 | } |
| 1901 | |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1902 | bool PrepareImageClasses() { |
| 1903 | // If --image-classes was specified, calculate the full list of classes to include in the image. |
| 1904 | if (image_classes_filename_ != nullptr) { |
| 1905 | image_classes_ = |
| 1906 | ReadClasses(image_classes_zip_filename_, image_classes_filename_, "image"); |
| 1907 | if (image_classes_ == nullptr) { |
| 1908 | return false; |
| 1909 | } |
| 1910 | } else if (IsBootImage()) { |
| 1911 | image_classes_.reset(new std::unordered_set<std::string>); |
| 1912 | } |
| 1913 | return true; |
| 1914 | } |
| 1915 | |
| 1916 | bool PrepareCompiledClasses() { |
| 1917 | // If --compiled-classes was specified, calculate the full list of classes to compile in the |
| 1918 | // image. |
| 1919 | if (compiled_classes_filename_ != nullptr) { |
| 1920 | compiled_classes_ = |
| 1921 | ReadClasses(compiled_classes_zip_filename_, compiled_classes_filename_, "compiled"); |
| 1922 | if (compiled_classes_ == nullptr) { |
| 1923 | return false; |
| 1924 | } |
| 1925 | } else { |
| 1926 | compiled_classes_.reset(nullptr); // By default compile everything. |
| 1927 | } |
| 1928 | return true; |
| 1929 | } |
| 1930 | |
| 1931 | static std::unique_ptr<std::unordered_set<std::string>> ReadClasses(const char* zip_filename, |
| 1932 | const char* classes_filename, |
| 1933 | const char* tag) { |
| 1934 | std::unique_ptr<std::unordered_set<std::string>> classes; |
| 1935 | std::string error_msg; |
| 1936 | if (zip_filename != nullptr) { |
| 1937 | classes.reset(ReadImageClassesFromZip(zip_filename, classes_filename, &error_msg)); |
| 1938 | } else { |
| 1939 | classes.reset(ReadImageClassesFromFile(classes_filename)); |
| 1940 | } |
| 1941 | if (classes == nullptr) { |
| 1942 | LOG(ERROR) << "Failed to create list of " << tag << " classes from '" |
| 1943 | << classes_filename << "': " << error_msg; |
| 1944 | } |
| 1945 | return classes; |
| 1946 | } |
| 1947 | |
| 1948 | bool PrepareCompiledMethods() { |
| 1949 | // If --compiled-methods was specified, read the methods to compile from the given file(s). |
| 1950 | if (compiled_methods_filename_ != nullptr) { |
| 1951 | std::string error_msg; |
| 1952 | if (compiled_methods_zip_filename_ != nullptr) { |
| 1953 | compiled_methods_.reset(ReadCommentedInputFromZip(compiled_methods_zip_filename_, |
| 1954 | compiled_methods_filename_, |
| 1955 | nullptr, // No post-processing. |
| 1956 | &error_msg)); |
| 1957 | } else { |
| 1958 | compiled_methods_.reset(ReadCommentedInputFromFile(compiled_methods_filename_, |
| 1959 | nullptr)); // No post-processing. |
| 1960 | } |
| 1961 | if (compiled_methods_.get() == nullptr) { |
| 1962 | LOG(ERROR) << "Failed to create list of compiled methods from '" |
| 1963 | << compiled_methods_filename_ << "': " << error_msg; |
| 1964 | return false; |
| 1965 | } |
| 1966 | } else { |
| 1967 | compiled_methods_.reset(nullptr); // By default compile everything. |
| 1968 | } |
| 1969 | return true; |
| 1970 | } |
| 1971 | |
| 1972 | void SaveDexInput() { |
| 1973 | for (size_t i = 0; i < dex_files_.size(); ++i) { |
| 1974 | const DexFile* dex_file = dex_files_[i]; |
| 1975 | std::string tmp_file_name(StringPrintf("/data/local/tmp/dex2oat.%d.%zd.dex", |
| 1976 | getpid(), i)); |
| 1977 | std::unique_ptr<File> tmp_file(OS::CreateEmptyFile(tmp_file_name.c_str())); |
| 1978 | if (tmp_file.get() == nullptr) { |
| 1979 | PLOG(ERROR) << "Failed to open file " << tmp_file_name |
| 1980 | << ". Try: adb shell chmod 777 /data/local/tmp"; |
| 1981 | continue; |
| 1982 | } |
| 1983 | // This is just dumping files for debugging. Ignore errors, and leave remnants. |
| 1984 | UNUSED(tmp_file->WriteFully(dex_file->Begin(), dex_file->Size())); |
| 1985 | UNUSED(tmp_file->Flush()); |
| 1986 | UNUSED(tmp_file->Close()); |
| 1987 | LOG(INFO) << "Wrote input to " << tmp_file_name; |
| 1988 | } |
| 1989 | } |
| 1990 | |
| 1991 | bool PrepareRuntimeOptions(RuntimeArgumentMap* runtime_options) { |
| 1992 | RuntimeOptions raw_options; |
| 1993 | if (boot_image_filename_.empty()) { |
| 1994 | std::string boot_class_path = "-Xbootclasspath:"; |
| 1995 | boot_class_path += Join(dex_filenames_, ':'); |
| 1996 | raw_options.push_back(std::make_pair(boot_class_path, nullptr)); |
| 1997 | std::string boot_class_path_locations = "-Xbootclasspath-locations:"; |
| 1998 | boot_class_path_locations += Join(dex_locations_, ':'); |
| 1999 | raw_options.push_back(std::make_pair(boot_class_path_locations, nullptr)); |
| 2000 | } else { |
| 2001 | std::string boot_image_option = "-Ximage:"; |
| 2002 | boot_image_option += boot_image_filename_; |
| 2003 | raw_options.push_back(std::make_pair(boot_image_option, nullptr)); |
| 2004 | } |
| 2005 | for (size_t i = 0; i < runtime_args_.size(); i++) { |
| 2006 | raw_options.push_back(std::make_pair(runtime_args_[i], nullptr)); |
| 2007 | } |
| 2008 | |
| 2009 | raw_options.push_back(std::make_pair("compilercallbacks", callbacks_.get())); |
| 2010 | raw_options.push_back( |
| 2011 | std::make_pair("imageinstructionset", GetInstructionSetString(instruction_set_))); |
| 2012 | |
| 2013 | // Only allow no boot image for the runtime if we're compiling one. When we compile an app, |
| 2014 | // we don't want fallback mode, it will abort as we do not push a boot classpath (it might |
| 2015 | // have been stripped in preopting, anyways). |
| 2016 | if (!IsBootImage()) { |
| 2017 | raw_options.push_back(std::make_pair("-Xno-dex-file-fallback", nullptr)); |
| 2018 | } |
| 2019 | // Disable libsigchain. We don't don't need it during compilation and it prevents us |
| 2020 | // from getting a statically linked version of dex2oat (because of dlsym and RTLD_NEXT). |
| 2021 | raw_options.push_back(std::make_pair("-Xno-sig-chain", nullptr)); |
| 2022 | |
| 2023 | if (!Runtime::ParseOptions(raw_options, false, runtime_options)) { |
| 2024 | LOG(ERROR) << "Failed to parse runtime options"; |
| 2025 | return false; |
| 2026 | } |
| 2027 | return true; |
| 2028 | } |
| 2029 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2030 | // Create a runtime necessary for compilation. |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 2031 | bool CreateRuntime(RuntimeArgumentMap&& runtime_options) |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2032 | SHARED_TRYLOCK_FUNCTION(true, Locks::mutator_lock_) { |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 2033 | if (!Runtime::Create(std::move(runtime_options))) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2034 | LOG(ERROR) << "Failed to create runtime"; |
| 2035 | return false; |
| 2036 | } |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 2037 | runtime_.reset(Runtime::Current()); |
| 2038 | runtime_->SetInstructionSet(instruction_set_); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2039 | for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) { |
| 2040 | Runtime::CalleeSaveType type = Runtime::CalleeSaveType(i); |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 2041 | if (!runtime_->HasCalleeSaveMethod(type)) { |
| 2042 | runtime_->SetCalleeSaveMethod(runtime_->CreateCalleeSaveMethod(), type); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2043 | } |
| 2044 | } |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 2045 | runtime_->GetClassLinker()->FixupDexCaches(runtime_->GetResolutionMethod()); |
Andreas Gampe | 2969bcd | 2015-03-09 12:57:41 -0700 | [diff] [blame] | 2046 | |
| 2047 | // Initialize maps for unstarted runtime. This needs to be here, as running clinits needs this |
| 2048 | // set up. |
Andreas Gampe | 799681b | 2015-05-15 19:24:12 -0700 | [diff] [blame] | 2049 | interpreter::UnstartedRuntime::Initialize(); |
Andreas Gampe | 2969bcd | 2015-03-09 12:57:41 -0700 | [diff] [blame] | 2050 | |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 2051 | runtime_->GetClassLinker()->RunRootClinits(); |
Andreas Gampe | 2969bcd | 2015-03-09 12:57:41 -0700 | [diff] [blame] | 2052 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2053 | return true; |
| 2054 | } |
| 2055 | |
| 2056 | void PrepareImageWriter(uintptr_t image_base) { |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 2057 | DCHECK(IsImage()); |
| 2058 | image_writer_.reset(new ImageWriter(*driver_, |
| 2059 | image_base, |
| 2060 | compiler_options_->GetCompilePic(), |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 2061 | IsAppImage(), |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2062 | image_storage_mode_, |
| 2063 | oat_filenames_, |
| 2064 | dex_file_oat_filename_map_)); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2065 | } |
| 2066 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2067 | // Let the ImageWriter write the image files. If we do not compile PIC, also fix up the oat files. |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2068 | bool CreateImageFile() |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2069 | REQUIRES(!Locks::mutator_lock_) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2070 | CHECK(image_writer_ != nullptr); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2071 | if (!IsBootImage()) { |
| 2072 | image_filenames_.push_back(app_image_file_name_.c_str()); |
| 2073 | } |
| 2074 | if (!image_writer_->Write(app_image_fd_, image_filenames_, oat_filenames_)) { |
| 2075 | LOG(ERROR) << "Failure during image file creation"; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2076 | return false; |
| 2077 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2078 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2079 | // We need the OatDataBegin entries. |
| 2080 | std::map<const char*, uintptr_t> oat_data_begins; |
| 2081 | for (const char* oat_filename : oat_filenames_) { |
| 2082 | oat_data_begins.emplace(oat_filename, image_writer_->GetOatDataBegin(oat_filename)); |
| 2083 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2084 | // Destroy ImageWriter before doing FixupElf. |
| 2085 | image_writer_.reset(); |
| 2086 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2087 | for (const char* oat_filename : oat_filenames_) { |
| 2088 | // Do not fix up the ELF file if we are --compile-pic or compiling the app image |
| 2089 | if (!compiler_options_->GetCompilePic() && IsBootImage()) { |
| 2090 | std::unique_ptr<File> oat_file(OS::OpenFileReadWrite(oat_filename)); |
| 2091 | if (oat_file.get() == nullptr) { |
| 2092 | PLOG(ERROR) << "Failed to open ELF file: " << oat_filename; |
| 2093 | return false; |
| 2094 | } |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 2095 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2096 | uintptr_t oat_data_begin = oat_data_begins.find(oat_filename)->second; |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 2097 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2098 | if (!ElfWriter::Fixup(oat_file.get(), oat_data_begin)) { |
| 2099 | oat_file->Erase(); |
| 2100 | LOG(ERROR) << "Failed to fixup ELF file " << oat_file->GetPath(); |
| 2101 | return false; |
| 2102 | } |
| 2103 | |
| 2104 | if (oat_file->FlushCloseOrErase()) { |
| 2105 | PLOG(ERROR) << "Failed to flush and close fixed ELF file " << oat_file->GetPath(); |
| 2106 | return false; |
| 2107 | } |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 2108 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2109 | } |
| 2110 | |
| 2111 | return true; |
| 2112 | } |
| 2113 | |
| 2114 | // Reads the class names (java.lang.Object) and returns a set of descriptors (Ljava/lang/Object;) |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 2115 | static std::unordered_set<std::string>* ReadImageClassesFromFile( |
| 2116 | const char* image_classes_filename) { |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2117 | std::function<std::string(const char*)> process = DotToDescriptor; |
| 2118 | return ReadCommentedInputFromFile(image_classes_filename, &process); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2119 | } |
| 2120 | |
| 2121 | // Reads the class names (java.lang.Object) and returns a set of descriptors (Ljava/lang/Object;) |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 2122 | static std::unordered_set<std::string>* ReadImageClassesFromZip( |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2123 | const char* zip_filename, |
| 2124 | const char* image_classes_filename, |
| 2125 | std::string* error_msg) { |
| 2126 | std::function<std::string(const char*)> process = DotToDescriptor; |
| 2127 | return ReadCommentedInputFromZip(zip_filename, image_classes_filename, &process, error_msg); |
| 2128 | } |
| 2129 | |
| 2130 | // Read lines from the given file, dropping comments and empty lines. Post-process each line with |
| 2131 | // the given function. |
| 2132 | static std::unordered_set<std::string>* ReadCommentedInputFromFile( |
| 2133 | const char* input_filename, std::function<std::string(const char*)>* process) { |
| 2134 | std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in)); |
| 2135 | if (input_file.get() == nullptr) { |
| 2136 | LOG(ERROR) << "Failed to open input file " << input_filename; |
| 2137 | return nullptr; |
| 2138 | } |
| 2139 | std::unique_ptr<std::unordered_set<std::string>> result( |
| 2140 | ReadCommentedInputStream(*input_file, process)); |
| 2141 | input_file->close(); |
| 2142 | return result.release(); |
| 2143 | } |
| 2144 | |
| 2145 | // Read lines from the given file from the given zip file, dropping comments and empty lines. |
| 2146 | // Post-process each line with the given function. |
| 2147 | static std::unordered_set<std::string>* ReadCommentedInputFromZip( |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 2148 | const char* zip_filename, |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2149 | const char* input_filename, |
| 2150 | std::function<std::string(const char*)>* process, |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 2151 | std::string* error_msg) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2152 | std::unique_ptr<ZipArchive> zip_archive(ZipArchive::Open(zip_filename, error_msg)); |
| 2153 | if (zip_archive.get() == nullptr) { |
| 2154 | return nullptr; |
| 2155 | } |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2156 | std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find(input_filename, error_msg)); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2157 | if (zip_entry.get() == nullptr) { |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2158 | *error_msg = StringPrintf("Failed to find '%s' within '%s': %s", input_filename, |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2159 | zip_filename, error_msg->c_str()); |
| 2160 | return nullptr; |
| 2161 | } |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2162 | std::unique_ptr<MemMap> input_file(zip_entry->ExtractToMemMap(zip_filename, |
| 2163 | input_filename, |
| 2164 | error_msg)); |
| 2165 | if (input_file.get() == nullptr) { |
| 2166 | *error_msg = StringPrintf("Failed to extract '%s' from '%s': %s", input_filename, |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2167 | zip_filename, error_msg->c_str()); |
| 2168 | return nullptr; |
| 2169 | } |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2170 | const std::string input_string(reinterpret_cast<char*>(input_file->Begin()), |
| 2171 | input_file->Size()); |
| 2172 | std::istringstream input_stream(input_string); |
| 2173 | return ReadCommentedInputStream(input_stream, process); |
| 2174 | } |
| 2175 | |
| 2176 | // Read lines from the given stream, dropping comments and empty lines. Post-process each line |
| 2177 | // with the given function. |
| 2178 | static std::unordered_set<std::string>* ReadCommentedInputStream( |
| 2179 | std::istream& in_stream, |
| 2180 | std::function<std::string(const char*)>* process) { |
| 2181 | std::unique_ptr<std::unordered_set<std::string>> image_classes( |
| 2182 | new std::unordered_set<std::string>); |
| 2183 | while (in_stream.good()) { |
| 2184 | std::string dot; |
| 2185 | std::getline(in_stream, dot); |
| 2186 | if (StartsWith(dot, "#") || dot.empty()) { |
| 2187 | continue; |
| 2188 | } |
| 2189 | if (process != nullptr) { |
| 2190 | std::string descriptor((*process)(dot.c_str())); |
| 2191 | image_classes->insert(descriptor); |
| 2192 | } else { |
| 2193 | image_classes->insert(dot); |
| 2194 | } |
| 2195 | } |
| 2196 | return image_classes.release(); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2197 | } |
| 2198 | |
Mathieu Chartier | 49285c5 | 2014-12-02 15:43:48 -0800 | [diff] [blame] | 2199 | void LogCompletionTime() { |
Andreas Gampe | 1d00add | 2015-02-27 19:35:46 -0800 | [diff] [blame] | 2200 | // Note: when creation of a runtime fails, e.g., when trying to compile an app but when there |
| 2201 | // is no image, there won't be a Runtime::Current(). |
Brian Carlstrom | a11a34c | 2015-03-06 08:44:45 -0800 | [diff] [blame] | 2202 | // Note: driver creation can fail when loading an invalid dex file. |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2203 | LOG(INFO) << "dex2oat took " << PrettyDuration(NanoTime() - start_ns_) |
Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 2204 | << " (threads: " << thread_count_ << ") " |
Andreas Gampe | 3f30e12 | 2015-09-17 14:03:21 -0700 | [diff] [blame] | 2205 | << ((Runtime::Current() != nullptr && driver_ != nullptr) ? |
Andreas Gampe | 1d00add | 2015-02-27 19:35:46 -0800 | [diff] [blame] | 2206 | driver_->GetMemoryUsageString(kIsDebugBuild || VLOG_IS_ON(compiler)) : |
| 2207 | ""); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2208 | } |
| 2209 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2210 | std::string StripIsaFrom(const char* image_filename, InstructionSet isa) { |
| 2211 | std::string res(image_filename); |
| 2212 | size_t last_slash = res.rfind('/'); |
| 2213 | if (last_slash == std::string::npos || last_slash == 0) { |
| 2214 | return res; |
| 2215 | } |
| 2216 | size_t penultimate_slash = res.rfind('/', last_slash - 1); |
| 2217 | if (penultimate_slash == std::string::npos) { |
| 2218 | return res; |
| 2219 | } |
| 2220 | // Check that the string in-between is the expected one. |
| 2221 | if (res.substr(penultimate_slash + 1, last_slash - penultimate_slash - 1) != |
| 2222 | GetInstructionSetString(isa)) { |
| 2223 | LOG(WARNING) << "Unexpected string when trying to strip isa: " << res; |
| 2224 | return res; |
| 2225 | } |
| 2226 | return res.substr(0, penultimate_slash) + res.substr(last_slash); |
| 2227 | } |
| 2228 | |
| 2229 | // Update the estimate for the oat file with the given index. |
| 2230 | void UpdateImageWriter(size_t index) { |
| 2231 | DCHECK(image_writer_ != nullptr); |
| 2232 | DCHECK_LT(index, oat_filenames_.size()); |
| 2233 | |
| 2234 | image_writer_->UpdateOatFile(oat_filenames_[index]); |
| 2235 | } |
| 2236 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2237 | std::unique_ptr<CompilerOptions> compiler_options_; |
| 2238 | Compiler::Kind compiler_kind_; |
| 2239 | |
| 2240 | InstructionSet instruction_set_; |
| 2241 | std::unique_ptr<const InstructionSetFeatures> instruction_set_features_; |
| 2242 | |
| 2243 | std::unique_ptr<SafeMap<std::string, std::string> > key_value_store_; |
| 2244 | |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 2245 | std::unique_ptr<VerificationResults> verification_results_; |
Andreas Gampe | 3f30e12 | 2015-09-17 14:03:21 -0700 | [diff] [blame] | 2246 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2247 | DexFileToMethodInlinerMap method_inliner_map_; |
| 2248 | std::unique_ptr<QuickCompilerCallbacks> callbacks_; |
| 2249 | |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 2250 | // Ownership for the class path files. |
| 2251 | std::vector<std::unique_ptr<const DexFile>> class_path_files_; |
| 2252 | |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 2253 | std::unique_ptr<Runtime> runtime_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2254 | |
| 2255 | size_t thread_count_; |
| 2256 | uint64_t start_ns_; |
| 2257 | std::unique_ptr<WatchDog> watchdog_; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2258 | std::vector<std::unique_ptr<File>> oat_files_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2259 | std::string oat_location_; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2260 | std::vector<const char*> oat_filenames_; |
| 2261 | std::vector<const char*> oat_unstripped_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2262 | int oat_fd_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2263 | std::vector<const char*> dex_filenames_; |
| 2264 | std::vector<const char*> dex_locations_; |
| 2265 | int zip_fd_; |
| 2266 | std::string zip_location_; |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 2267 | std::string boot_image_filename_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2268 | std::vector<const char*> runtime_args_; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2269 | std::vector<const char*> image_filenames_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2270 | uintptr_t image_base_; |
| 2271 | const char* image_classes_zip_filename_; |
| 2272 | const char* image_classes_filename_; |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 2273 | ImageHeader::StorageMode image_storage_mode_; |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 2274 | const char* compiled_classes_zip_filename_; |
| 2275 | const char* compiled_classes_filename_; |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2276 | const char* compiled_methods_zip_filename_; |
| 2277 | const char* compiled_methods_filename_; |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 2278 | std::unique_ptr<std::unordered_set<std::string>> image_classes_; |
| 2279 | std::unique_ptr<std::unordered_set<std::string>> compiled_classes_; |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2280 | std::unique_ptr<std::unordered_set<std::string>> compiled_methods_; |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 2281 | bool app_image_; |
| 2282 | bool boot_image_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2283 | bool is_host_; |
| 2284 | std::string android_root_; |
| 2285 | std::vector<const DexFile*> dex_files_; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2286 | std::string no_inline_from_string_; |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 2287 | std::vector<jobject> dex_caches_; |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 2288 | std::vector<std::unique_ptr<const DexFile>> opened_dex_files_; |
Andreas Gampe | 3f30e12 | 2015-09-17 14:03:21 -0700 | [diff] [blame] | 2289 | |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 2290 | std::unique_ptr<ImageWriter> image_writer_; |
| 2291 | std::unique_ptr<CompilerDriver> driver_; |
Andreas Gampe | 3f30e12 | 2015-09-17 14:03:21 -0700 | [diff] [blame] | 2292 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2293 | std::vector<std::string> verbose_methods_; |
| 2294 | bool dump_stats_; |
| 2295 | bool dump_passes_; |
| 2296 | bool dump_timing_; |
| 2297 | bool dump_slow_timing_; |
David Brazdil | 866c031 | 2015-01-13 21:21:31 +0000 | [diff] [blame] | 2298 | std::string dump_cfg_file_name_; |
Calin Juravle | 87000a9 | 2015-08-24 15:34:44 +0100 | [diff] [blame] | 2299 | bool dump_cfg_append_; |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 2300 | std::string swap_file_name_; |
| 2301 | int swap_fd_; |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 2302 | std::string app_image_file_name_; |
| 2303 | int app_image_fd_; |
Calin Juravle | 998c216 | 2015-12-21 15:39:33 +0200 | [diff] [blame] | 2304 | std::vector<std::string> profile_files_; |
| 2305 | std::vector<std::string> reference_profile_files_; |
| 2306 | std::unique_ptr<ProfileCompilationInfo> profile_compilation_info_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2307 | TimingLogger* timings_; |
| 2308 | std::unique_ptr<CumulativeLogger> compiler_phases_timings_; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2309 | std::vector<std::vector<const DexFile*>> dex_files_per_oat_file_; |
| 2310 | std::unordered_map<const DexFile*, const char*> dex_file_oat_filename_map_; |
| 2311 | |
| 2312 | // Backing storage. |
| 2313 | std::vector<std::string> char_backing_storage_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2314 | |
| 2315 | DISALLOW_IMPLICIT_CONSTRUCTORS(Dex2Oat); |
| 2316 | }; |
| 2317 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2318 | static void b13564922() { |
| 2319 | #if defined(__linux__) && defined(__arm__) |
| 2320 | int major, minor; |
| 2321 | struct utsname uts; |
| 2322 | if (uname(&uts) != -1 && |
| 2323 | sscanf(uts.release, "%d.%d", &major, &minor) == 2 && |
| 2324 | ((major < 3) || ((major == 3) && (minor < 4)))) { |
| 2325 | // Kernels before 3.4 don't handle the ASLR well and we can run out of address |
| 2326 | // space (http://b/13564922). Work around the issue by inhibiting further mmap() randomization. |
| 2327 | int old_personality = personality(0xffffffff); |
| 2328 | if ((old_personality & ADDR_NO_RANDOMIZE) == 0) { |
| 2329 | int new_personality = personality(old_personality | ADDR_NO_RANDOMIZE); |
| 2330 | if (new_personality == -1) { |
| 2331 | LOG(WARNING) << "personality(. | ADDR_NO_RANDOMIZE) failed."; |
| 2332 | } |
| 2333 | } |
| 2334 | } |
| 2335 | #endif |
| 2336 | } |
| 2337 | |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2338 | static int CompileImage(Dex2Oat& dex2oat) { |
| 2339 | dex2oat.Compile(); |
| 2340 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2341 | if (!dex2oat.CreateOatFiles()) { |
| 2342 | dex2oat.EraseOatFiles(); |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2343 | return EXIT_FAILURE; |
| 2344 | } |
| 2345 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2346 | // Close the image oat files. We always expect the output file by name, and it will be |
| 2347 | // re-opened from the unstripped name. Note: it's easier to *flush* and close... |
| 2348 | if (!dex2oat.FlushCloseOatFiles()) { |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2349 | return EXIT_FAILURE; |
| 2350 | } |
| 2351 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2352 | // Creates the boot.art and patches the oat files. |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2353 | if (!dex2oat.HandleImage()) { |
| 2354 | return EXIT_FAILURE; |
| 2355 | } |
| 2356 | |
| 2357 | // When given --host, finish early without stripping. |
| 2358 | if (dex2oat.IsHost()) { |
| 2359 | dex2oat.DumpTiming(); |
| 2360 | return EXIT_SUCCESS; |
| 2361 | } |
| 2362 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2363 | // Copy stripped to unstripped location, if necessary. |
| 2364 | if (!dex2oat.CopyStrippedToUnstripped()) { |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2365 | return EXIT_FAILURE; |
| 2366 | } |
| 2367 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2368 | // FlushClose again, as stripping might have re-opened the oat files. |
| 2369 | if (!dex2oat.FlushCloseOatFiles()) { |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2370 | return EXIT_FAILURE; |
| 2371 | } |
| 2372 | |
| 2373 | dex2oat.DumpTiming(); |
| 2374 | return EXIT_SUCCESS; |
| 2375 | } |
| 2376 | |
| 2377 | static int CompileApp(Dex2Oat& dex2oat) { |
| 2378 | dex2oat.Compile(); |
| 2379 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2380 | if (!dex2oat.CreateOatFiles()) { |
| 2381 | dex2oat.EraseOatFiles(); |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2382 | return EXIT_FAILURE; |
| 2383 | } |
| 2384 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2385 | // Do not close the oat files here. We might have gotten the output file by file descriptor, |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2386 | // which we would lose. |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2387 | |
| 2388 | // When given --host, finish early without stripping. |
| 2389 | if (dex2oat.IsHost()) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2390 | if (!dex2oat.FlushCloseOatFiles()) { |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2391 | return EXIT_FAILURE; |
| 2392 | } |
| 2393 | |
| 2394 | dex2oat.DumpTiming(); |
| 2395 | return EXIT_SUCCESS; |
| 2396 | } |
| 2397 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2398 | // Copy stripped to unstripped location, if necessary. This will implicitly flush & close the |
| 2399 | // stripped versions. If this is given, we expect to be able to open writable files by name. |
| 2400 | if (!dex2oat.CopyStrippedToUnstripped()) { |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2401 | return EXIT_FAILURE; |
| 2402 | } |
| 2403 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2404 | // Flush and close the files. |
| 2405 | if (!dex2oat.FlushCloseOatFiles()) { |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2406 | return EXIT_FAILURE; |
| 2407 | } |
| 2408 | |
| 2409 | dex2oat.DumpTiming(); |
| 2410 | return EXIT_SUCCESS; |
| 2411 | } |
| 2412 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2413 | static int dex2oat(int argc, char** argv) { |
| 2414 | b13564922(); |
| 2415 | |
| 2416 | TimingLogger timings("compiler", false, false); |
| 2417 | |
| 2418 | Dex2Oat dex2oat(&timings); |
| 2419 | |
| 2420 | // Parse arguments. Argument mistakes will lead to exit(EXIT_FAILURE) in UsageError. |
| 2421 | dex2oat.ParseArgs(argc, argv); |
| 2422 | |
Calin Juravle | 998c216 | 2015-12-21 15:39:33 +0200 | [diff] [blame] | 2423 | // Process profile information and assess if we need to do a profile guided compilation. |
| 2424 | // This operation involves I/O. |
| 2425 | if (dex2oat.UseProfileGuidedCompilation()) { |
| 2426 | if (dex2oat.ProcessProfiles()) { |
| 2427 | if (!dex2oat.ShouldCompileBasedOnProfiles()) { |
| 2428 | LOG(INFO) << "Skipped compilation because of insignificant profile delta"; |
| 2429 | return EXIT_SUCCESS; |
| 2430 | } |
| 2431 | } else { |
| 2432 | LOG(WARNING) << "Failed to process profile files"; |
| 2433 | return EXIT_FAILURE; |
| 2434 | } |
| 2435 | } |
| 2436 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2437 | // Check early that the result of compilation can be written |
| 2438 | if (!dex2oat.OpenFile()) { |
| 2439 | return EXIT_FAILURE; |
| 2440 | } |
| 2441 | |
Andreas Gampe | 046c706 | 2015-05-18 23:22:54 -0700 | [diff] [blame] | 2442 | // Print the complete line when any of the following is true: |
| 2443 | // 1) Debug build |
| 2444 | // 2) Compiling an image |
| 2445 | // 3) Compiling with --host |
| 2446 | // 4) Compiling on the host (not a target build) |
| 2447 | // Otherwise, print a stripped command line. |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 2448 | if (kIsDebugBuild || dex2oat.IsBootImage() || dex2oat.IsHost() || !kIsTargetBuild) { |
Andreas Gampe | 046c706 | 2015-05-18 23:22:54 -0700 | [diff] [blame] | 2449 | LOG(INFO) << CommandLine(); |
| 2450 | } else { |
| 2451 | LOG(INFO) << StrippedCommandLine(); |
| 2452 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2453 | |
| 2454 | if (!dex2oat.Setup()) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2455 | dex2oat.EraseOatFiles(); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2456 | return EXIT_FAILURE; |
| 2457 | } |
| 2458 | |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 2459 | bool result; |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2460 | if (dex2oat.IsImage()) { |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 2461 | result = CompileImage(dex2oat); |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2462 | } else { |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 2463 | result = CompileApp(dex2oat); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2464 | } |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 2465 | |
| 2466 | dex2oat.Shutdown(); |
| 2467 | return result; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2468 | } |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 2469 | } // namespace art |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2470 | |
| 2471 | int main(int argc, char** argv) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2472 | int result = art::dex2oat(argc, argv); |
| 2473 | // Everything was done, do an explicit exit here to avoid running Runtime destructors that take |
| 2474 | // time (bug 10645725) unless we're a debug build or running on valgrind. Note: The Dex2Oat class |
| 2475 | // should not destruct the runtime in this case. |
Evgenii Stepanov | 1e13374 | 2015-05-20 12:30:59 -0700 | [diff] [blame] | 2476 | if (!art::kIsDebugBuild && (RUNNING_ON_MEMORY_TOOL == 0)) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2477 | exit(result); |
| 2478 | } |
| 2479 | return result; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2480 | } |