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), |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 523 | multi_image_(false), |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 524 | is_host_(false), |
Vladimir Marko | 10c1356 | 2015-11-25 14:33:36 +0000 | [diff] [blame] | 525 | image_writer_(nullptr), |
Andreas Gampe | 3f30e12 | 2015-09-17 14:03:21 -0700 | [diff] [blame] | 526 | driver_(nullptr), |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 527 | dump_stats_(false), |
| 528 | dump_passes_(false), |
| 529 | dump_timing_(false), |
| 530 | dump_slow_timing_(kIsDebugBuild), |
Calin Juravle | 87000a9 | 2015-08-24 15:34:44 +0100 | [diff] [blame] | 531 | dump_cfg_append_(false), |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 532 | swap_fd_(-1), |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 533 | app_image_fd_(kInvalidImageFd), |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 534 | timings_(timings) {} |
| 535 | |
| 536 | ~Dex2Oat() { |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 537 | // Free opened dex files before deleting the runtime_, because ~DexFile |
| 538 | // uses MemMap, which is shut down by ~Runtime. |
| 539 | class_path_files_.clear(); |
| 540 | opened_dex_files_.clear(); |
| 541 | |
| 542 | // Log completion time before deleting the runtime_, because this accesses |
| 543 | // the runtime. |
| 544 | LogCompletionTime(); |
| 545 | |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 546 | if (!kIsDebugBuild && !(RUNNING_ON_MEMORY_TOOL && kMemoryToolDetectsLeaks)) { |
| 547 | // We want to just exit on non-debug builds, not bringing the runtime down |
| 548 | // in an orderly fashion. So release the following fields. |
| 549 | driver_.release(); |
| 550 | image_writer_.release(); |
| 551 | for (std::unique_ptr<const DexFile>& dex_file : opened_dex_files_) { |
| 552 | dex_file.release(); |
| 553 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 554 | for (std::unique_ptr<File>& oat_file : oat_files_) { |
| 555 | oat_file.release(); |
| 556 | } |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 557 | runtime_.release(); |
| 558 | verification_results_.release(); |
| 559 | key_value_store_.release(); |
Vladimir Marko | f94b781 | 2014-06-05 15:48:04 +0100 | [diff] [blame] | 560 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 561 | } |
| 562 | |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 563 | struct ParserOptions { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 564 | std::vector<const char*> oat_symbols; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 565 | std::string boot_image_filename; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 566 | bool watch_dog_enabled = true; |
Nicolas Geoffray | 1412dfa | 2015-03-20 14:48:13 +0000 | [diff] [blame] | 567 | bool requested_specific_compiler = false; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 568 | std::string error_msg; |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 569 | }; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 570 | |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 571 | void ParseZipFd(const StringPiece& option) { |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 572 | ParseUintOption(option, "--zip-fd", &zip_fd_, Usage); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 573 | } |
| 574 | |
| 575 | void ParseOatFd(const StringPiece& option) { |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 576 | ParseUintOption(option, "--oat-fd", &oat_fd_, Usage); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 577 | } |
| 578 | |
| 579 | void ParseJ(const StringPiece& option) { |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 580 | ParseUintOption(option, "-j", &thread_count_, Usage, /* is_long_option */ false); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | void ParseBase(const StringPiece& option) { |
| 584 | DCHECK(option.starts_with("--base=")); |
| 585 | const char* image_base_str = option.substr(strlen("--base=")).data(); |
| 586 | char* end; |
| 587 | image_base_ = strtoul(image_base_str, &end, 16); |
| 588 | if (end == image_base_str || *end != '\0') { |
| 589 | Usage("Failed to parse hexadecimal value for option %s", option.data()); |
| 590 | } |
| 591 | } |
| 592 | |
| 593 | void ParseInstructionSet(const StringPiece& option) { |
| 594 | DCHECK(option.starts_with("--instruction-set=")); |
| 595 | StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data(); |
| 596 | // StringPiece is not necessarily zero-terminated, so need to make a copy and ensure it. |
| 597 | std::unique_ptr<char[]> buf(new char[instruction_set_str.length() + 1]); |
| 598 | strncpy(buf.get(), instruction_set_str.data(), instruction_set_str.length()); |
| 599 | buf.get()[instruction_set_str.length()] = 0; |
| 600 | instruction_set_ = GetInstructionSetFromString(buf.get()); |
| 601 | // arm actually means thumb2. |
| 602 | if (instruction_set_ == InstructionSet::kArm) { |
| 603 | instruction_set_ = InstructionSet::kThumb2; |
| 604 | } |
| 605 | } |
| 606 | |
| 607 | void ParseInstructionSetVariant(const StringPiece& option, ParserOptions* parser_options) { |
| 608 | DCHECK(option.starts_with("--instruction-set-variant=")); |
| 609 | StringPiece str = option.substr(strlen("--instruction-set-variant=")).data(); |
| 610 | instruction_set_features_.reset( |
| 611 | InstructionSetFeatures::FromVariant( |
| 612 | instruction_set_, str.as_string(), &parser_options->error_msg)); |
| 613 | if (instruction_set_features_.get() == nullptr) { |
| 614 | Usage("%s", parser_options->error_msg.c_str()); |
| 615 | } |
| 616 | } |
| 617 | |
| 618 | void ParseInstructionSetFeatures(const StringPiece& option, ParserOptions* parser_options) { |
| 619 | DCHECK(option.starts_with("--instruction-set-features=")); |
| 620 | StringPiece str = option.substr(strlen("--instruction-set-features=")).data(); |
| 621 | if (instruction_set_features_.get() == nullptr) { |
| 622 | instruction_set_features_.reset( |
| 623 | InstructionSetFeatures::FromVariant( |
| 624 | instruction_set_, "default", &parser_options->error_msg)); |
| 625 | if (instruction_set_features_.get() == nullptr) { |
| 626 | Usage("Problem initializing default instruction set features variant: %s", |
| 627 | parser_options->error_msg.c_str()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 628 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 629 | } |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 630 | instruction_set_features_.reset( |
| 631 | instruction_set_features_->AddFeaturesFromString(str.as_string(), |
| 632 | &parser_options->error_msg)); |
| 633 | if (instruction_set_features_.get() == nullptr) { |
| 634 | Usage("Error parsing '%s': %s", option.data(), parser_options->error_msg.c_str()); |
| 635 | } |
| 636 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 637 | |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 638 | void ParseCompilerBackend(const StringPiece& option, ParserOptions* parser_options) { |
| 639 | DCHECK(option.starts_with("--compiler-backend=")); |
| 640 | parser_options->requested_specific_compiler = true; |
| 641 | StringPiece backend_str = option.substr(strlen("--compiler-backend=")).data(); |
| 642 | if (backend_str == "Quick") { |
| 643 | compiler_kind_ = Compiler::kQuick; |
| 644 | } else if (backend_str == "Optimizing") { |
| 645 | compiler_kind_ = Compiler::kOptimizing; |
| 646 | } else { |
| 647 | Usage("Unknown compiler backend: %s", backend_str.data()); |
| 648 | } |
| 649 | } |
| 650 | |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 651 | void ParseImageFormat(const StringPiece& option) { |
| 652 | const StringPiece substr("--image-format="); |
| 653 | DCHECK(option.starts_with(substr)); |
| 654 | const StringPiece format_str = option.substr(substr.length()); |
| 655 | if (format_str == "lz4") { |
| 656 | image_storage_mode_ = ImageHeader::kStorageModeLZ4; |
| 657 | } else if (format_str == "uncompressed") { |
| 658 | image_storage_mode_ = ImageHeader::kStorageModeUncompressed; |
| 659 | } else { |
| 660 | Usage("Unknown image format: %s", format_str.data()); |
| 661 | } |
| 662 | } |
| 663 | |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 664 | void ProcessOptions(ParserOptions* parser_options) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 665 | boot_image_ = !image_filenames_.empty(); |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 666 | app_image_ = app_image_fd_ != -1 || !app_image_file_name_.empty(); |
| 667 | |
| 668 | if (IsAppImage() && IsBootImage()) { |
| 669 | Usage("Can't have both --image and (--app-image-fd or --app-image-file)"); |
| 670 | } |
| 671 | |
| 672 | if (IsBootImage()) { |
Nicolas Geoffray | 409e809 | 2015-10-01 10:32:19 +0100 | [diff] [blame] | 673 | // We need the boot image to always be debuggable. |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 674 | compiler_options_->debuggable_ = true; |
Nicolas Geoffray | 1412dfa | 2015-03-20 14:48:13 +0000 | [diff] [blame] | 675 | } |
Nicolas Geoffray | 9bb492a | 2014-11-25 23:42:00 +0000 | [diff] [blame] | 676 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 677 | if (oat_filenames_.empty() && oat_fd_ == -1) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 678 | Usage("Output must be supplied with either --oat-file or --oat-fd"); |
| 679 | } |
| 680 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 681 | if (!oat_filenames_.empty() && oat_fd_ != -1) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 682 | Usage("--oat-file should not be used with --oat-fd"); |
| 683 | } |
| 684 | |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 685 | if (!parser_options->oat_symbols.empty() && oat_fd_ != -1) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 686 | Usage("--oat-symbols should not be used with --oat-fd"); |
| 687 | } |
| 688 | |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 689 | if (!parser_options->oat_symbols.empty() && is_host_) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 690 | Usage("--oat-symbols should not be used with --host"); |
| 691 | } |
| 692 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 693 | if (oat_fd_ != -1 && !image_filenames_.empty()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 694 | Usage("--oat-fd should not be used with --image"); |
| 695 | } |
| 696 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 697 | if (!parser_options->oat_symbols.empty() && |
| 698 | parser_options->oat_symbols.size() != oat_filenames_.size()) { |
| 699 | Usage("--oat-file arguments do not match --oat-symbols arguments"); |
| 700 | } |
| 701 | |
| 702 | if (!image_filenames_.empty() && image_filenames_.size() != oat_filenames_.size()) { |
| 703 | Usage("--oat-file arguments do not match --image arguments"); |
| 704 | } |
| 705 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 706 | if (android_root_.empty()) { |
| 707 | const char* android_root_env_var = getenv("ANDROID_ROOT"); |
| 708 | if (android_root_env_var == nullptr) { |
| 709 | Usage("--android-root unspecified and ANDROID_ROOT not set"); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 710 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 711 | android_root_ += android_root_env_var; |
| 712 | } |
| 713 | |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 714 | if (!boot_image_ && parser_options->boot_image_filename.empty()) { |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 715 | parser_options->boot_image_filename += android_root_; |
| 716 | parser_options->boot_image_filename += "/framework/boot.art"; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 717 | } |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 718 | if (!parser_options->boot_image_filename.empty()) { |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 719 | boot_image_filename_ = parser_options->boot_image_filename; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 720 | } |
| 721 | |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 722 | if (image_classes_filename_ != nullptr && !IsBootImage()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 723 | Usage("--image-classes should only be used with --image"); |
| 724 | } |
| 725 | |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 726 | if (image_classes_filename_ != nullptr && !boot_image_filename_.empty()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 727 | Usage("--image-classes should not be used with --boot-image"); |
| 728 | } |
| 729 | |
| 730 | if (image_classes_zip_filename_ != nullptr && image_classes_filename_ == nullptr) { |
| 731 | Usage("--image-classes-zip should be used with --image-classes"); |
| 732 | } |
| 733 | |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 734 | if (compiled_classes_filename_ != nullptr && !IsBootImage()) { |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 735 | Usage("--compiled-classes should only be used with --image"); |
| 736 | } |
| 737 | |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 738 | if (compiled_classes_filename_ != nullptr && !boot_image_filename_.empty()) { |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 739 | Usage("--compiled-classes should not be used with --boot-image"); |
| 740 | } |
| 741 | |
| 742 | if (compiled_classes_zip_filename_ != nullptr && compiled_classes_filename_ == nullptr) { |
| 743 | Usage("--compiled-classes-zip should be used with --compiled-classes"); |
| 744 | } |
| 745 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 746 | if (dex_filenames_.empty() && zip_fd_ == -1) { |
| 747 | Usage("Input must be supplied with either --dex-file or --zip-fd"); |
| 748 | } |
| 749 | |
| 750 | if (!dex_filenames_.empty() && zip_fd_ != -1) { |
| 751 | Usage("--dex-file should not be used with --zip-fd"); |
| 752 | } |
| 753 | |
| 754 | if (!dex_filenames_.empty() && !zip_location_.empty()) { |
| 755 | Usage("--dex-file should not be used with --zip-location"); |
| 756 | } |
| 757 | |
| 758 | if (dex_locations_.empty()) { |
| 759 | for (const char* dex_file_name : dex_filenames_) { |
| 760 | dex_locations_.push_back(dex_file_name); |
| 761 | } |
| 762 | } else if (dex_locations_.size() != dex_filenames_.size()) { |
| 763 | Usage("--dex-location arguments do not match --dex-file arguments"); |
| 764 | } |
| 765 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 766 | if (!dex_filenames_.empty() && !oat_filenames_.empty()) { |
| 767 | if (oat_filenames_.size() != 1 && oat_filenames_.size() != dex_filenames_.size()) { |
| 768 | Usage("--oat-file arguments must be singular or match --dex-file arguments"); |
| 769 | } |
| 770 | } |
| 771 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 772 | if (zip_fd_ != -1 && zip_location_.empty()) { |
| 773 | Usage("--zip-location should be supplied with --zip-fd"); |
| 774 | } |
| 775 | |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 776 | if (boot_image_filename_.empty()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 777 | if (image_base_ == 0) { |
| 778 | Usage("Non-zero --base not specified"); |
| 779 | } |
| 780 | } |
| 781 | |
Calin Juravle | 998c216 | 2015-12-21 15:39:33 +0200 | [diff] [blame] | 782 | if (!profile_files_.empty()) { |
| 783 | if (!reference_profile_files_.empty() && |
| 784 | (reference_profile_files_.size() != profile_files_.size())) { |
| 785 | Usage("If specified, --reference-profile-file should match the number of --profile-file."); |
| 786 | } |
| 787 | } |
| 788 | |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 789 | if (!parser_options->oat_symbols.empty()) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 790 | oat_unstripped_ = std::move(parser_options->oat_symbols); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 791 | } |
| 792 | |
| 793 | // If no instruction set feature was given, use the default one for the target |
| 794 | // instruction set. |
| 795 | if (instruction_set_features_.get() == nullptr) { |
| 796 | instruction_set_features_.reset( |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 797 | InstructionSetFeatures::FromVariant( |
| 798 | instruction_set_, "default", &parser_options->error_msg)); |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 799 | if (instruction_set_features_.get() == nullptr) { |
| 800 | Usage("Problem initializing default instruction set features variant: %s", |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 801 | parser_options->error_msg.c_str()); |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 802 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | if (instruction_set_ == kRuntimeISA) { |
| 806 | std::unique_ptr<const InstructionSetFeatures> runtime_features( |
| 807 | InstructionSetFeatures::FromCppDefines()); |
| 808 | if (!instruction_set_features_->Equals(runtime_features.get())) { |
| 809 | LOG(WARNING) << "Mismatch between dex2oat instruction set features (" |
| 810 | << *instruction_set_features_ << ") and those of dex2oat executable (" |
| 811 | << *runtime_features <<") for the command line:\n" |
| 812 | << CommandLine(); |
| 813 | } |
| 814 | } |
| 815 | |
Roland Levillain | a215b95 | 2015-08-07 11:38:32 +0100 | [diff] [blame] | 816 | // It they are not set, use default values for inlining settings. |
| 817 | // TODO: We should rethink the compiler filter. We mostly save |
| 818 | // time here, which is orthogonal to space. |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 819 | if (compiler_options_->inline_depth_limit_ == CompilerOptions::kUnsetInlineDepthLimit) { |
| 820 | compiler_options_->inline_depth_limit_ = |
| 821 | (compiler_options_->compiler_filter_ == CompilerOptions::kSpace) |
Roland Levillain | a215b95 | 2015-08-07 11:38:32 +0100 | [diff] [blame] | 822 | // Implementation of the space filter: limit inlining depth. |
| 823 | ? CompilerOptions::kSpaceFilterInlineDepthLimit |
| 824 | : CompilerOptions::kDefaultInlineDepthLimit; |
| 825 | } |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 826 | if (compiler_options_->inline_max_code_units_ == CompilerOptions::kUnsetInlineMaxCodeUnits) { |
| 827 | compiler_options_->inline_max_code_units_ = |
| 828 | (compiler_options_->compiler_filter_ == CompilerOptions::kSpace) |
Roland Levillain | a215b95 | 2015-08-07 11:38:32 +0100 | [diff] [blame] | 829 | // Implementation of the space filter: limit inlining max code units. |
| 830 | ? CompilerOptions::kSpaceFilterInlineMaxCodeUnits |
| 831 | : CompilerOptions::kDefaultInlineMaxCodeUnits; |
| 832 | } |
| 833 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 834 | // Checks are all explicit until we know the architecture. |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 835 | // Set the compilation target's implicit checks options. |
| 836 | switch (instruction_set_) { |
| 837 | case kArm: |
| 838 | case kThumb2: |
| 839 | case kArm64: |
| 840 | case kX86: |
| 841 | case kX86_64: |
Douglas Leung | 22bb5a2 | 2015-07-02 16:42:08 -0700 | [diff] [blame] | 842 | case kMips: |
| 843 | case kMips64: |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 844 | compiler_options_->implicit_null_checks_ = true; |
| 845 | compiler_options_->implicit_so_checks_ = true; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 846 | break; |
| 847 | |
| 848 | default: |
| 849 | // Defaults are correct. |
| 850 | break; |
| 851 | } |
| 852 | |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 853 | compiler_options_->verbose_methods_ = verbose_methods_.empty() ? nullptr : &verbose_methods_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 854 | |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 855 | if (!IsBootImage() && multi_image_) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 856 | Usage("--multi-image can only be used when creating boot images"); |
| 857 | } |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 858 | if (IsBootImage() && multi_image_ && image_filenames_.size() > 1) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 859 | Usage("--multi-image cannot be used with multiple image names"); |
| 860 | } |
| 861 | |
| 862 | // For now, if we're on the host and compile the boot image, *always* use multiple image files. |
| 863 | if (!kIsTargetBuild && IsBootImage()) { |
| 864 | if (image_filenames_.size() == 1) { |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 865 | multi_image_ = true; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 866 | } |
| 867 | } |
| 868 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 869 | // Done with usage checks, enable watchdog if requested |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 870 | if (parser_options->watch_dog_enabled) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 871 | watchdog_.reset(new WatchDog(true)); |
| 872 | } |
| 873 | |
| 874 | // Fill some values into the key-value store for the oat header. |
| 875 | key_value_store_.reset(new SafeMap<std::string, std::string>()); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 876 | } |
| 877 | |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 878 | void ExpandOatAndImageFilenames() { |
| 879 | std::string base_oat = oat_filenames_[0]; |
| 880 | size_t last_oat_slash = base_oat.rfind('/'); |
| 881 | if (last_oat_slash == std::string::npos) { |
| 882 | Usage("--multi-image used with unusable oat filename %s", base_oat.c_str()); |
| 883 | } |
| 884 | // We also need to honor path components that were encoded through '@'. Otherwise the loading |
| 885 | // code won't be able to find the images. |
| 886 | if (base_oat.find('@', last_oat_slash) != std::string::npos) { |
| 887 | last_oat_slash = base_oat.rfind('@'); |
| 888 | } |
| 889 | base_oat = base_oat.substr(0, last_oat_slash + 1); |
| 890 | |
| 891 | std::string base_img = image_filenames_[0]; |
| 892 | size_t last_img_slash = base_img.rfind('/'); |
| 893 | if (last_img_slash == std::string::npos) { |
| 894 | Usage("--multi-image used with unusable image filename %s", base_img.c_str()); |
| 895 | } |
| 896 | // We also need to honor path components that were encoded through '@'. Otherwise the loading |
| 897 | // code won't be able to find the images. |
| 898 | if (base_img.find('@', last_img_slash) != std::string::npos) { |
| 899 | last_img_slash = base_img.rfind('@'); |
| 900 | } |
| 901 | |
| 902 | // Get the prefix, which is the primary image name (without path components). Strip the |
| 903 | // extension. |
| 904 | std::string prefix = base_img.substr(last_img_slash + 1); |
| 905 | if (prefix.rfind('.') != std::string::npos) { |
| 906 | prefix = prefix.substr(0, prefix.rfind('.')); |
| 907 | } |
| 908 | if (!prefix.empty()) { |
| 909 | prefix = prefix + "-"; |
| 910 | } |
| 911 | |
| 912 | base_img = base_img.substr(0, last_img_slash + 1); |
| 913 | |
| 914 | // Note: we have some special case here for our testing. We have to inject the differentiating |
| 915 | // parts for the different core images. |
| 916 | std::string infix; // Empty infix by default. |
| 917 | { |
| 918 | // Check the first name. |
| 919 | std::string dex_file = oat_filenames_[0]; |
| 920 | size_t last_dex_slash = dex_file.rfind('/'); |
| 921 | if (last_dex_slash != std::string::npos) { |
| 922 | dex_file = dex_file.substr(last_dex_slash + 1); |
| 923 | } |
| 924 | size_t last_dex_dot = dex_file.rfind('.'); |
| 925 | if (last_dex_dot != std::string::npos) { |
| 926 | dex_file = dex_file.substr(0, last_dex_dot); |
| 927 | } |
| 928 | if (StartsWith(dex_file, "core-")) { |
| 929 | infix = dex_file.substr(strlen("core")); |
| 930 | } |
| 931 | } |
| 932 | |
| 933 | // Now create the other names. Use a counted loop to skip the first one. |
| 934 | for (size_t i = 1; i < dex_locations_.size(); ++i) { |
| 935 | // TODO: Make everything properly std::string. |
| 936 | std::string image_name = CreateMultiImageName(dex_locations_[i], prefix, infix, ".art"); |
| 937 | char_backing_storage_.push_back(base_img + image_name); |
| 938 | image_filenames_.push_back((char_backing_storage_.end() - 1)->c_str()); |
| 939 | |
| 940 | std::string oat_name = CreateMultiImageName(dex_locations_[i], prefix, infix, ".oat"); |
| 941 | char_backing_storage_.push_back(base_oat + oat_name); |
| 942 | oat_filenames_.push_back((char_backing_storage_.end() - 1)->c_str()); |
| 943 | } |
| 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 | |
| 1017 | for (int i = 0; i < argc; i++) { |
| 1018 | const StringPiece option(argv[i]); |
| 1019 | const bool log_options = false; |
| 1020 | if (log_options) { |
| 1021 | LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i]; |
| 1022 | } |
| 1023 | if (option.starts_with("--dex-file=")) { |
| 1024 | dex_filenames_.push_back(option.substr(strlen("--dex-file=")).data()); |
| 1025 | } else if (option.starts_with("--dex-location=")) { |
| 1026 | dex_locations_.push_back(option.substr(strlen("--dex-location=")).data()); |
| 1027 | } else if (option.starts_with("--zip-fd=")) { |
| 1028 | ParseZipFd(option); |
| 1029 | } else if (option.starts_with("--zip-location=")) { |
| 1030 | zip_location_ = option.substr(strlen("--zip-location=")).data(); |
| 1031 | } else if (option.starts_with("--oat-file=")) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1032 | oat_filenames_.push_back(option.substr(strlen("--oat-file=")).data()); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1033 | } else if (option.starts_with("--oat-symbols=")) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1034 | parser_options->oat_symbols.push_back(option.substr(strlen("--oat-symbols=")).data()); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1035 | } else if (option.starts_with("--oat-fd=")) { |
| 1036 | ParseOatFd(option); |
| 1037 | } else if (option == "--watch-dog") { |
| 1038 | parser_options->watch_dog_enabled = true; |
| 1039 | } else if (option == "--no-watch-dog") { |
| 1040 | parser_options->watch_dog_enabled = false; |
| 1041 | } else if (option.starts_with("-j")) { |
| 1042 | ParseJ(option); |
| 1043 | } else if (option.starts_with("--oat-location=")) { |
| 1044 | oat_location_ = option.substr(strlen("--oat-location=")).data(); |
| 1045 | } else if (option.starts_with("--image=")) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1046 | image_filenames_.push_back(option.substr(strlen("--image=")).data()); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1047 | } else if (option.starts_with("--image-classes=")) { |
| 1048 | image_classes_filename_ = option.substr(strlen("--image-classes=")).data(); |
| 1049 | } else if (option.starts_with("--image-classes-zip=")) { |
| 1050 | image_classes_zip_filename_ = option.substr(strlen("--image-classes-zip=")).data(); |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 1051 | } else if (option.starts_with("--image-format=")) { |
| 1052 | ParseImageFormat(option); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1053 | } else if (option.starts_with("--compiled-classes=")) { |
| 1054 | compiled_classes_filename_ = option.substr(strlen("--compiled-classes=")).data(); |
| 1055 | } else if (option.starts_with("--compiled-classes-zip=")) { |
| 1056 | compiled_classes_zip_filename_ = option.substr(strlen("--compiled-classes-zip=")).data(); |
| 1057 | } else if (option.starts_with("--compiled-methods=")) { |
| 1058 | compiled_methods_filename_ = option.substr(strlen("--compiled-methods=")).data(); |
| 1059 | } else if (option.starts_with("--compiled-methods-zip=")) { |
| 1060 | compiled_methods_zip_filename_ = option.substr(strlen("--compiled-methods-zip=")).data(); |
| 1061 | } else if (option.starts_with("--base=")) { |
| 1062 | ParseBase(option); |
| 1063 | } else if (option.starts_with("--boot-image=")) { |
| 1064 | parser_options->boot_image_filename = option.substr(strlen("--boot-image=")).data(); |
| 1065 | } else if (option.starts_with("--android-root=")) { |
| 1066 | android_root_ = option.substr(strlen("--android-root=")).data(); |
| 1067 | } else if (option.starts_with("--instruction-set=")) { |
| 1068 | ParseInstructionSet(option); |
| 1069 | } else if (option.starts_with("--instruction-set-variant=")) { |
| 1070 | ParseInstructionSetVariant(option, parser_options.get()); |
| 1071 | } else if (option.starts_with("--instruction-set-features=")) { |
| 1072 | ParseInstructionSetFeatures(option, parser_options.get()); |
| 1073 | } else if (option.starts_with("--compiler-backend=")) { |
| 1074 | ParseCompilerBackend(option, parser_options.get()); |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 1075 | } else if (option.starts_with("--profile-file=")) { |
Calin Juravle | 998c216 | 2015-12-21 15:39:33 +0200 | [diff] [blame] | 1076 | profile_files_.push_back(option.substr(strlen("--profile-file=")).ToString()); |
| 1077 | } else if (option.starts_with("--reference-profile-file=")) { |
| 1078 | reference_profile_files_.push_back( |
| 1079 | option.substr(strlen("--reference-profile-file=")).ToString()); |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 1080 | } else if (option == "--no-profile-file") { |
| 1081 | // No profile |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1082 | } else if (option == "--host") { |
| 1083 | is_host_ = true; |
| 1084 | } else if (option == "--runtime-arg") { |
| 1085 | if (++i >= argc) { |
| 1086 | Usage("Missing required argument for --runtime-arg"); |
| 1087 | } |
| 1088 | if (log_options) { |
| 1089 | LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i]; |
| 1090 | } |
| 1091 | runtime_args_.push_back(argv[i]); |
| 1092 | } else if (option == "--dump-timing") { |
| 1093 | dump_timing_ = true; |
| 1094 | } else if (option == "--dump-passes") { |
| 1095 | dump_passes_ = true; |
| 1096 | } else if (option.starts_with("--dump-cfg=")) { |
| 1097 | dump_cfg_file_name_ = option.substr(strlen("--dump-cfg=")).data(); |
Calin Juravle | 87000a9 | 2015-08-24 15:34:44 +0100 | [diff] [blame] | 1098 | } else if (option.starts_with("--dump-cfg-append")) { |
| 1099 | dump_cfg_append_ = true; |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1100 | } else if (option == "--dump-stats") { |
| 1101 | dump_stats_ = true; |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 1102 | } else if (option.starts_with("--swap-file=")) { |
| 1103 | swap_file_name_ = option.substr(strlen("--swap-file=")).data(); |
| 1104 | } else if (option.starts_with("--swap-fd=")) { |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1105 | ParseUintOption(option, "--swap-fd", &swap_fd_, Usage); |
| 1106 | } else if (option.starts_with("--app-image-file=")) { |
| 1107 | app_image_file_name_ = option.substr(strlen("--app-image-file=")).data(); |
| 1108 | } else if (option.starts_with("--app-image-fd=")) { |
| 1109 | ParseUintOption(option, "--app-image-fd", &app_image_fd_, Usage); |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1110 | } else if (option.starts_with("--verbose-methods=")) { |
| 1111 | // TODO: rather than switch off compiler logging, make all VLOG(compiler) messages |
| 1112 | // conditional on having verbost methods. |
| 1113 | gLogVerbosity.compiler = false; |
| 1114 | Split(option.substr(strlen("--verbose-methods=")).ToString(), ',', &verbose_methods_); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1115 | } else if (option == "--multi-image") { |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1116 | multi_image_ = true; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1117 | } else if (option.starts_with("--no-inline-from=")) { |
| 1118 | no_inline_from_string_ = option.substr(strlen("--no-inline-from=")).data(); |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 1119 | } else if (!compiler_options_->ParseCompilerOption(option, Usage)) { |
Roland Levillain | 9ec5e22 | 2015-08-17 20:18:41 +0100 | [diff] [blame] | 1120 | Usage("Unknown argument %s", option.data()); |
| 1121 | } |
| 1122 | } |
| 1123 | |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1124 | ProcessOptions(parser_options.get()); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1125 | |
| 1126 | // Insert some compiler things. |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 1127 | InsertCompileOptions(argc, argv); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1128 | } |
| 1129 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1130 | // Check whether the oat output files are writable, and open them for later. Also open a swap |
| 1131 | // file, if a name is given. |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1132 | bool OpenFile() { |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1133 | // Expand oat and image filenames for multi image. |
| 1134 | if (IsBootImage() && multi_image_) { |
| 1135 | ExpandOatAndImageFilenames(); |
| 1136 | } |
| 1137 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1138 | 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] | 1139 | if (create_file) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1140 | for (const char* oat_filename : oat_filenames_) { |
| 1141 | std::unique_ptr<File> oat_file(OS::CreateEmptyFile(oat_filename)); |
| 1142 | if (oat_file.get() == nullptr) { |
| 1143 | PLOG(ERROR) << "Failed to create oat file: " << oat_filename; |
| 1144 | return false; |
| 1145 | } |
| 1146 | if (create_file && fchmod(oat_file->Fd(), 0644) != 0) { |
| 1147 | PLOG(ERROR) << "Failed to make oat file world readable: " << oat_filename; |
| 1148 | oat_file->Erase(); |
| 1149 | return false; |
| 1150 | } |
| 1151 | oat_files_.push_back(std::move(oat_file)); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1152 | } |
| 1153 | } else { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1154 | std::unique_ptr<File> oat_file(new File(oat_fd_, oat_location_, true)); |
| 1155 | oat_file->DisableAutoClose(); |
| 1156 | if (oat_file->SetLength(0) != 0) { |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 1157 | PLOG(WARNING) << "Truncating oat file " << oat_location_ << " failed."; |
| 1158 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1159 | if (oat_file.get() == nullptr) { |
| 1160 | PLOG(ERROR) << "Failed to create oat file: " << oat_location_; |
| 1161 | return false; |
| 1162 | } |
| 1163 | if (create_file && fchmod(oat_file->Fd(), 0644) != 0) { |
| 1164 | PLOG(ERROR) << "Failed to make oat file world readable: " << oat_location_; |
| 1165 | oat_file->Erase(); |
| 1166 | return false; |
| 1167 | } |
| 1168 | oat_filenames_.push_back(oat_location_.c_str()); |
| 1169 | oat_files_.push_back(std::move(oat_file)); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1170 | } |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 1171 | |
| 1172 | // Swap file handling. |
| 1173 | // |
| 1174 | // If the swap fd is not -1, we assume this is the file descriptor of an open but unlinked file |
| 1175 | // that we can use for swap. |
| 1176 | // |
| 1177 | // If the swap fd is -1 and we have a swap-file string, open the given file as a swap file. We |
| 1178 | // will immediately unlink to satisfy the swap fd assumption. |
| 1179 | if (swap_fd_ == -1 && !swap_file_name_.empty()) { |
| 1180 | std::unique_ptr<File> swap_file(OS::CreateEmptyFile(swap_file_name_.c_str())); |
| 1181 | if (swap_file.get() == nullptr) { |
| 1182 | PLOG(ERROR) << "Failed to create swap file: " << swap_file_name_; |
| 1183 | return false; |
| 1184 | } |
| 1185 | swap_fd_ = swap_file->Fd(); |
| 1186 | swap_file->MarkUnchecked(); // We don't we to track this, it will be unlinked immediately. |
| 1187 | swap_file->DisableAutoClose(); // We'll handle it ourselves, the File object will be |
| 1188 | // released immediately. |
| 1189 | unlink(swap_file_name_.c_str()); |
| 1190 | } |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1191 | |
| 1192 | // If we use a swap file, ensure we are above the threshold to make it necessary. |
| 1193 | if (swap_fd_ != -1) { |
| 1194 | if (!UseSwap(IsBootImage(), dex_files_)) { |
| 1195 | close(swap_fd_); |
| 1196 | swap_fd_ = -1; |
| 1197 | VLOG(compiler) << "Decided to run without swap."; |
| 1198 | } else { |
| 1199 | LOG(INFO) << "Large app, accepted running with swap."; |
| 1200 | } |
| 1201 | } |
| 1202 | // Note that dex2oat won't close the swap_fd_. The compiler driver's swap space will do that. |
| 1203 | |
| 1204 | // Organize inputs, handling multi-dex and multiple oat file outputs. |
| 1205 | CreateDexOatMappings(); |
| 1206 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1207 | return true; |
| 1208 | } |
| 1209 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1210 | void EraseOatFiles() { |
| 1211 | for (size_t i = 0; i < oat_files_.size(); ++i) { |
| 1212 | DCHECK(oat_files_[i].get() != nullptr); |
| 1213 | oat_files_[i]->Erase(); |
| 1214 | oat_files_[i].reset(); |
| 1215 | } |
Andreas Gampe | a650e70 | 2014-12-03 14:28:02 -0800 | [diff] [blame] | 1216 | } |
| 1217 | |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1218 | void Shutdown() { |
| 1219 | ScopedObjectAccess soa(Thread::Current()); |
| 1220 | for (jobject dex_cache : dex_caches_) { |
| 1221 | soa.Env()->DeleteLocalRef(dex_cache); |
| 1222 | } |
| 1223 | dex_caches_.clear(); |
| 1224 | } |
| 1225 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1226 | // Set up the environment for compilation. Includes starting the runtime and loading/opening the |
| 1227 | // boot class path. |
| 1228 | bool Setup() { |
| 1229 | TimingLogger::ScopedTiming t("dex2oat Setup", timings_); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1230 | art::MemMap::Init(); // For ZipEntry::ExtractToMemMap. |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1231 | |
| 1232 | if (!PrepareImageClasses() || !PrepareCompiledClasses() || !PrepareCompiledMethods()) { |
| 1233 | return false; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1234 | } |
Brian Carlstrom | d76e083 | 2013-08-29 15:17:42 -0700 | [diff] [blame] | 1235 | |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 1236 | verification_results_.reset(new VerificationResults(compiler_options_.get())); |
Andreas Gampe | 4585f87 | 2015-03-27 23:45:15 -0700 | [diff] [blame] | 1237 | callbacks_.reset(new QuickCompilerCallbacks( |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 1238 | verification_results_.get(), |
Andreas Gampe | 4585f87 | 2015-03-27 23:45:15 -0700 | [diff] [blame] | 1239 | &method_inliner_map_, |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1240 | IsBootImage() ? |
Andreas Gampe | 4585f87 | 2015-03-27 23:45:15 -0700 | [diff] [blame] | 1241 | CompilerCallbacks::CallbackMode::kCompileBootImage : |
| 1242 | CompilerCallbacks::CallbackMode::kCompileApp)); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1243 | |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1244 | RuntimeArgumentMap runtime_options; |
| 1245 | if (!PrepareRuntimeOptions(&runtime_options)) { |
| 1246 | return false; |
Andreas Gampe | 1d00add | 2015-02-27 19:35:46 -0800 | [diff] [blame] | 1247 | } |
| 1248 | |
Andreas Gampe | c7ae55d | 2015-09-15 20:04:54 -0700 | [diff] [blame] | 1249 | { |
| 1250 | TimingLogger::ScopedTiming t_runtime("Create runtime", timings_); |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1251 | if (!CreateRuntime(std::move(runtime_options))) { |
Andreas Gampe | c7ae55d | 2015-09-15 20:04:54 -0700 | [diff] [blame] | 1252 | return false; |
| 1253 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1254 | } |
| 1255 | |
| 1256 | // Runtime::Create acquired the mutator_lock_ that is normally given away when we |
| 1257 | // Runtime::Start, give it away now so that we don't starve GC. |
| 1258 | Thread* self = Thread::Current(); |
| 1259 | self->TransitionFromRunnableToSuspended(kNative); |
| 1260 | // If we're doing the image, override the compiler filter to force full compilation. Must be |
| 1261 | // done ahead of WellKnownClasses::Init that causes verification. Note: doesn't force |
| 1262 | // compilation of class initializers. |
| 1263 | // Whilst we're in native take the opportunity to initialize well known classes. |
| 1264 | WellKnownClasses::Init(self->GetJniEnv()); |
| 1265 | |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1266 | ClassLinker* const class_linker = Runtime::Current()->GetClassLinker(); |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1267 | if (boot_image_filename_.empty()) { |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1268 | dex_files_ = class_linker->GetBootClassPath(); |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1269 | // Prune invalid dex locations. |
| 1270 | for (size_t i = 0; i < dex_locations_.size(); i++) { |
| 1271 | const char* dex_location = dex_locations_[i]; |
| 1272 | bool contains = false; |
| 1273 | for (const DexFile* dex_file : dex_files_) { |
| 1274 | if (strcmp(dex_location, dex_file->GetLocation().c_str()) == 0) { |
| 1275 | contains = true; |
| 1276 | break; |
| 1277 | } |
| 1278 | } |
| 1279 | if (!contains) { |
| 1280 | dex_locations_.erase(dex_locations_.begin() + i); |
| 1281 | i--; |
| 1282 | } |
| 1283 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1284 | } else { |
Andreas Gampe | c7ae55d | 2015-09-15 20:04:54 -0700 | [diff] [blame] | 1285 | TimingLogger::ScopedTiming t_dex("Opening dex files", timings_); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1286 | if (dex_filenames_.empty()) { |
| 1287 | ATRACE_BEGIN("Opening zip archive from file descriptor"); |
| 1288 | std::string error_msg; |
| 1289 | std::unique_ptr<ZipArchive> zip_archive(ZipArchive::OpenFromFd(zip_fd_, |
| 1290 | zip_location_.c_str(), |
| 1291 | &error_msg)); |
| 1292 | if (zip_archive.get() == nullptr) { |
| 1293 | LOG(ERROR) << "Failed to open zip from file descriptor for '" << zip_location_ << "': " |
| 1294 | << error_msg; |
| 1295 | return false; |
Brian Carlstrom | f79fccb | 2014-02-20 08:55:10 -0800 | [diff] [blame] | 1296 | } |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1297 | 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] | 1298 | LOG(ERROR) << "Failed to open dex from file descriptor for zip file '" << zip_location_ |
| 1299 | << "': " << error_msg; |
| 1300 | return false; |
| 1301 | } |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1302 | for (auto& dex_file : opened_dex_files_) { |
| 1303 | dex_files_.push_back(dex_file.get()); |
| 1304 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1305 | ATRACE_END(); |
| 1306 | } else { |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1307 | size_t failure_count = OpenDexFiles(dex_filenames_, dex_locations_, &opened_dex_files_); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1308 | if (failure_count > 0) { |
| 1309 | LOG(ERROR) << "Failed to open some dex files: " << failure_count; |
| 1310 | return false; |
| 1311 | } |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1312 | for (auto& dex_file : opened_dex_files_) { |
| 1313 | dex_files_.push_back(dex_file.get()); |
| 1314 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1315 | } |
| 1316 | |
| 1317 | constexpr bool kSaveDexInput = false; |
| 1318 | if (kSaveDexInput) { |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1319 | SaveDexInput(); |
Brian Carlstrom | f79fccb | 2014-02-20 08:55:10 -0800 | [diff] [blame] | 1320 | } |
| 1321 | } |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1322 | // Ensure opened dex files are writable for dex-to-dex transformations. Also ensure that |
| 1323 | // 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] | 1324 | for (const auto& dex_file : dex_files_) { |
| 1325 | if (!dex_file->EnableWrite()) { |
| 1326 | PLOG(ERROR) << "Failed to make .dex file writeable '" << dex_file->GetLocation() << "'\n"; |
Andreas Gampe | 7ba6496 | 2014-10-23 11:37:40 -0700 | [diff] [blame] | 1327 | } |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1328 | ScopedObjectAccess soa(self); |
| 1329 | dex_caches_.push_back(soa.AddLocalReference<jobject>( |
Mathieu Chartier | d57d454 | 2015-10-14 10:55:30 -0700 | [diff] [blame] | 1330 | class_linker->RegisterDexFile(*dex_file, Runtime::Current()->GetLinearAlloc()))); |
Artem Udovichenko | d9786b0 | 2015-10-14 16:36:55 +0300 | [diff] [blame] | 1331 | dex_file->CreateTypeLookupTable(); |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 1332 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1333 | |
| 1334 | /* |
| 1335 | * If we're not in interpret-only or verify-none mode, go ahead and compile small applications. |
| 1336 | * Don't bother to check if we're doing the image. |
| 1337 | */ |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1338 | if (!IsBootImage() && |
Brian Carlstrom | 95b033b | 2014-12-03 22:29:37 -0800 | [diff] [blame] | 1339 | compiler_options_->IsCompilationEnabled() && |
| 1340 | compiler_kind_ == Compiler::kQuick) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1341 | size_t num_methods = 0; |
| 1342 | for (size_t i = 0; i != dex_files_.size(); ++i) { |
| 1343 | const DexFile* dex_file = dex_files_[i]; |
| 1344 | CHECK(dex_file != nullptr); |
| 1345 | num_methods += dex_file->NumMethodIds(); |
| 1346 | } |
| 1347 | if (num_methods <= compiler_options_->GetNumDexMethodsThreshold()) { |
| 1348 | compiler_options_->SetCompilerFilter(CompilerOptions::kSpeed); |
| 1349 | VLOG(compiler) << "Below method threshold, compiling anyways"; |
| 1350 | } |
| 1351 | } |
| 1352 | |
| 1353 | return true; |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 1354 | } |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 1355 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1356 | void CreateDexOatMappings() { |
| 1357 | if (oat_files_.size() > 1) { |
| 1358 | size_t index = 0; |
| 1359 | for (size_t i = 0; i < oat_files_.size(); ++i) { |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1360 | std::vector<const DexFile*> dex_files; |
| 1361 | if (index < dex_files_.size()) { |
Nicolas Geoffray | de38b79 | 2015-12-30 14:50:12 +0000 | [diff] [blame] | 1362 | dex_files.push_back(dex_files_[index]); |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1363 | dex_file_oat_filename_map_.emplace(dex_files_[index], oat_filenames_[i]); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1364 | index++; |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1365 | while (index < dex_files_.size() && |
| 1366 | (dex_files_[index]->GetBaseLocation() == dex_files_[index - 1]->GetBaseLocation())) { |
| 1367 | dex_file_oat_filename_map_.emplace(dex_files_[index], oat_filenames_[i]); |
| 1368 | dex_files.push_back(dex_files_[index]); |
| 1369 | index++; |
| 1370 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1371 | } |
| 1372 | dex_files_per_oat_file_.push_back(std::move(dex_files)); |
| 1373 | } |
| 1374 | } else { |
| 1375 | dex_files_per_oat_file_.push_back(dex_files_); |
| 1376 | for (const DexFile* dex_file : dex_files_) { |
| 1377 | dex_file_oat_filename_map_.emplace(dex_file, oat_filenames_[0]); |
| 1378 | } |
| 1379 | } |
| 1380 | } |
| 1381 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1382 | // Create and invoke the compiler driver. This will compile all the dex files. |
| 1383 | void Compile() { |
| 1384 | TimingLogger::ScopedTiming t("dex2oat Compile", timings_); |
| 1385 | compiler_phases_timings_.reset(new CumulativeLogger("compilation times")); |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1386 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1387 | // Handle and ClassLoader creation needs to come after Runtime::Create |
| 1388 | jobject class_loader = nullptr; |
Mathieu Chartier | d37d364 | 2015-11-19 16:05:58 -0800 | [diff] [blame] | 1389 | jobject class_path_class_loader = nullptr; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1390 | Thread* self = Thread::Current(); |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1391 | |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1392 | if (!boot_image_filename_.empty()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1393 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1394 | OpenClassPathFiles(runtime_->GetClassPathString(), dex_files_, &class_path_files_); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1395 | ScopedObjectAccess soa(self); |
Andreas Gampe | 81c6f8d | 2015-03-25 17:19:53 -0700 | [diff] [blame] | 1396 | |
| 1397 | // Classpath: first the class-path given. |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1398 | std::vector<const DexFile*> class_path_files = MakeNonOwningPointerVector(class_path_files_); |
Andreas Gampe | 7848da4 | 2015-04-09 11:15:04 -0700 | [diff] [blame] | 1399 | |
| 1400 | // Store the classpath we have right now. |
| 1401 | key_value_store_->Put(OatHeader::kClassPathKey, |
| 1402 | OatFile::EncodeDexFileDependencies(class_path_files)); |
| 1403 | |
Mathieu Chartier | d37d364 | 2015-11-19 16:05:58 -0800 | [diff] [blame] | 1404 | class_path_class_loader = class_linker->CreatePathClassLoader(self, |
| 1405 | class_path_files, |
| 1406 | nullptr); |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1407 | |
Mathieu Chartier | d37d364 | 2015-11-19 16:05:58 -0800 | [diff] [blame] | 1408 | // Class path loader as parent so that we'll resolve there first. |
| 1409 | class_loader = class_linker->CreatePathClassLoader(self, dex_files_, class_path_class_loader); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1410 | } |
| 1411 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1412 | // Find the dex file we should not inline from. |
| 1413 | |
| 1414 | // For now, on the host always have core-oj removed. |
| 1415 | if (!kIsTargetBuild && no_inline_from_string_.empty()) { |
| 1416 | no_inline_from_string_ = "core-oj"; |
| 1417 | } |
| 1418 | |
| 1419 | if (!no_inline_from_string_.empty()) { |
| 1420 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| 1421 | std::vector<const DexFile*> class_path_files = MakeNonOwningPointerVector(class_path_files_); |
| 1422 | std::vector<const std::vector<const DexFile*>*> dex_file_vectors = { |
| 1423 | &class_linker->GetBootClassPath(), |
| 1424 | &class_path_files, |
| 1425 | &dex_files_ |
| 1426 | }; |
| 1427 | for (const std::vector<const DexFile*>* dex_file_vector : dex_file_vectors) { |
| 1428 | if (dex_file_vector == nullptr) { |
| 1429 | continue; |
| 1430 | } |
| 1431 | |
| 1432 | bool found = false; |
| 1433 | |
| 1434 | for (const DexFile* dex_file : *dex_file_vector) { |
| 1435 | // Try the complete location first. |
| 1436 | found = no_inline_from_string_ == dex_file->GetLocation(); |
| 1437 | // The try just the name. |
| 1438 | if (!found) { |
| 1439 | size_t last_slash = dex_file->GetLocation().rfind('/'); |
| 1440 | if (last_slash != std::string::npos) { |
| 1441 | found = StartsWith(dex_file->GetLocation().substr(last_slash + 1), |
| 1442 | no_inline_from_string_.c_str()); |
| 1443 | } |
| 1444 | } |
| 1445 | |
| 1446 | if (found) { |
| 1447 | VLOG(compiler) << "Disabling inlining from " << dex_file->GetLocation(); |
| 1448 | compiler_options_->no_inline_from_ = dex_file; |
| 1449 | break; |
| 1450 | } |
| 1451 | } |
| 1452 | |
| 1453 | if (found) { |
| 1454 | break; |
| 1455 | } |
| 1456 | } |
| 1457 | } |
| 1458 | |
| 1459 | if (IsBootImage() && image_filenames_.size() > 1) { |
| 1460 | // 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] | 1461 | // the image filename was adapted (e.g., for our tests), we need to change this here, too, but |
| 1462 | // need to strip all path components (they will be re-established when loading). |
| 1463 | // We need this for the multi-image case. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1464 | std::ostringstream bootcp_oss; |
| 1465 | bool first_bootcp = true; |
| 1466 | for (size_t i = 0; i < dex_locations_.size(); ++i) { |
| 1467 | if (!first_bootcp) { |
| 1468 | bootcp_oss << ":"; |
| 1469 | } |
| 1470 | |
| 1471 | std::string dex_loc = dex_locations_[i]; |
| 1472 | std::string image_filename = image_filenames_[i]; |
| 1473 | |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1474 | // 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] | 1475 | size_t dex_last_slash = dex_loc.rfind('/'); |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1476 | |
| 1477 | // npos is max(size_t). That makes this a bit ugly. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1478 | size_t image_last_slash = image_filename.rfind('/'); |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1479 | size_t image_last_at = image_filename.rfind('@'); |
| 1480 | size_t image_last_sep = (image_last_slash == std::string::npos) |
| 1481 | ? image_last_at |
| 1482 | : (image_last_at == std::string::npos) |
| 1483 | ? std::string::npos |
| 1484 | : std::max(image_last_slash, image_last_at); |
| 1485 | // Note: whenever image_last_sep == npos, +1 overflow means using the full string. |
| 1486 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1487 | if (dex_last_slash == std::string::npos) { |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1488 | dex_loc = image_filename.substr(image_last_sep + 1); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1489 | } else { |
| 1490 | dex_loc = dex_loc.substr(0, dex_last_slash + 1) + |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 1491 | image_filename.substr(image_last_sep + 1); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1492 | } |
| 1493 | |
| 1494 | // Image filenames already end with .art, no need to replace. |
| 1495 | |
| 1496 | bootcp_oss << dex_loc; |
| 1497 | first_bootcp = false; |
| 1498 | } |
| 1499 | key_value_store_->Put(OatHeader::kBootClassPath, bootcp_oss.str()); |
| 1500 | } |
| 1501 | |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 1502 | driver_.reset(new CompilerDriver(compiler_options_.get(), |
| 1503 | verification_results_.get(), |
| 1504 | &method_inliner_map_, |
| 1505 | compiler_kind_, |
| 1506 | instruction_set_, |
| 1507 | instruction_set_features_.get(), |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1508 | IsBootImage(), |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 1509 | image_classes_.release(), |
| 1510 | compiled_classes_.release(), |
| 1511 | nullptr, |
| 1512 | thread_count_, |
| 1513 | dump_stats_, |
| 1514 | dump_passes_, |
| 1515 | dump_cfg_file_name_, |
| 1516 | dump_cfg_append_, |
| 1517 | compiler_phases_timings_.get(), |
| 1518 | swap_fd_, |
Calin Juravle | 998c216 | 2015-12-21 15:39:33 +0200 | [diff] [blame] | 1519 | &dex_file_oat_filename_map_, |
| 1520 | profile_compilation_info_.get())); |
Vladimir Marko | d1eaf0d | 2015-10-29 12:18:29 +0000 | [diff] [blame] | 1521 | driver_->SetDexFilesForOatFile(dex_files_); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1522 | driver_->CompileAll(class_loader, dex_files_, timings_); |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1523 | } |
| 1524 | |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1525 | // Notes on the interleaving of creating the images and oat files to |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1526 | // ensure the references between the two are correct. |
| 1527 | // |
| 1528 | // Currently we have a memory layout that looks something like this: |
| 1529 | // |
| 1530 | // +--------------+ |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1531 | // | images | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1532 | // +--------------+ |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1533 | // | oat files | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1534 | // +--------------+ |
| 1535 | // | alloc spaces | |
| 1536 | // +--------------+ |
| 1537 | // |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1538 | // There are several constraints on the loading of the images and oat files. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1539 | // |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1540 | // 1. The images are expected to be loaded at an absolute address and |
| 1541 | // contain Objects with absolute pointers within the images. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1542 | // |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1543 | // 2. There are absolute pointers from Methods in the images to their |
| 1544 | // code in the oat files. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1545 | // |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1546 | // 3. There are absolute pointers from the code in the oat files to Methods |
| 1547 | // in the images. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1548 | // |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1549 | // 4. There are absolute pointers from code in the oat files to other code |
| 1550 | // in the oat files. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1551 | // |
| 1552 | // To get this all correct, we go through several steps. |
| 1553 | // |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1554 | // 1. We prepare offsets for all data in the oat files and calculate |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1555 | // the oat data size and code size. During this stage, we also set |
| 1556 | // oat code offsets in methods for use by the image writer. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1557 | // |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1558 | // 2. We prepare offsets for the objects in the images and calculate |
| 1559 | // the image sizes. |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1560 | // |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1561 | // 3. We create the oat files. Originally this was just our own proprietary |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1562 | // file but now it is contained within an ELF dynamic object (aka an .so |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1563 | // file). Since we know the image sizes and oat data sizes and code sizes we |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1564 | // can prepare the ELF headers and we then know the ELF memory segment |
| 1565 | // layout and we can now resolve all references. The compiler provides |
| 1566 | // LinkerPatch information in each CompiledMethod and we resolve these, |
| 1567 | // using the layout information and image object locations provided by |
| 1568 | // image writer, as we're writing the method code. |
| 1569 | // |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1570 | // 4. We create the image files. They need to know where the oat files |
| 1571 | // will be loaded after itself. Originally oat files were simply |
| 1572 | // memory mapped so we could predict where their contents were based |
| 1573 | // on the file size. Now that they are ELF files, we need to inspect |
| 1574 | // the ELF files to understand the in memory segment layout including |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1575 | // where the oat header is located within. |
| 1576 | // TODO: We could just remember this information from step 3. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1577 | // |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1578 | // 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] | 1579 | // load the .so at the desired location at runtime by offsetting the |
| 1580 | // Elf32_Phdr.p_vaddr values by the desired base address. |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1581 | // TODO: Do this in step 3. We already know the layout there. |
| 1582 | // |
| 1583 | // Steps 1.-3. are done by the CreateOatFile() above, steps 4.-5. |
| 1584 | // are done by the CreateImageFile() below. |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1585 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1586 | // Write out the generated code part. Calls the OatWriter and ElfBuilder. Also prepares the |
| 1587 | // ImageWriter, if necessary. |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 1588 | // Note: Flushing (and closing) the file is the caller's responsibility, except for the failure |
| 1589 | // case (when the file will be explicitly erased). |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1590 | bool CreateOatFiles() { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1591 | CHECK(key_value_store_.get() != nullptr); |
| 1592 | |
| 1593 | TimingLogger::ScopedTiming t("dex2oat Oat", timings_); |
| 1594 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1595 | std::vector<std::unique_ptr<OatWriter>> oat_writers; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1596 | { |
| 1597 | TimingLogger::ScopedTiming t2("dex2oat OatWriter", timings_); |
| 1598 | std::string image_file_location; |
| 1599 | uint32_t image_file_location_oat_checksum = 0; |
| 1600 | uintptr_t image_file_location_oat_data_begin = 0; |
| 1601 | int32_t image_patch_delta = 0; |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1602 | |
| 1603 | if (app_image_ && image_base_ == 0) { |
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 | for (gc::space::ImageSpace* image_space : image_spaces) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1607 | image_base_ = std::max(image_base_, RoundUp( |
| 1608 | reinterpret_cast<uintptr_t>(image_space->GetImageHeader().GetOatFileEnd()), |
| 1609 | kPageSize)); |
| 1610 | } |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1611 | VLOG(compiler) << "App image base=" << reinterpret_cast<void*>(image_base_); |
| 1612 | } |
| 1613 | |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1614 | if (IsImage()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1615 | PrepareImageWriter(image_base_); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1616 | } |
| 1617 | |
| 1618 | if (!IsBootImage()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1619 | TimingLogger::ScopedTiming t3("Loading image checksum", timings_); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1620 | std::vector<gc::space::ImageSpace*> image_spaces = |
| 1621 | Runtime::Current()->GetHeap()->GetBootImageSpaces(); |
| 1622 | image_file_location_oat_checksum = image_spaces[0]->GetImageHeader().GetOatChecksum(); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1623 | image_file_location_oat_data_begin = |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1624 | reinterpret_cast<uintptr_t>(image_spaces[0]->GetImageHeader().GetOatDataBegin()); |
| 1625 | image_patch_delta = image_spaces[0]->GetImageHeader().GetPatchDelta(); |
| 1626 | std::vector<std::string> image_filenames; |
| 1627 | for (const gc::space::ImageSpace* image_space : image_spaces) { |
| 1628 | image_filenames.push_back(image_space->GetImageFilename()); |
| 1629 | } |
| 1630 | image_file_location = Join(image_filenames, ':'); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1631 | } |
| 1632 | |
| 1633 | if (!image_file_location.empty()) { |
| 1634 | key_value_store_->Put(OatHeader::kImageLocationKey, image_file_location); |
| 1635 | } |
| 1636 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1637 | for (size_t i = 0; i < oat_files_.size(); ++i) { |
| 1638 | std::vector<const DexFile*>& dex_files = dex_files_per_oat_file_[i]; |
| 1639 | std::unique_ptr<OatWriter> oat_writer(new OatWriter(dex_files, |
| 1640 | image_file_location_oat_checksum, |
| 1641 | image_file_location_oat_data_begin, |
| 1642 | image_patch_delta, |
| 1643 | driver_.get(), |
| 1644 | image_writer_.get(), |
| 1645 | IsBootImage(), |
| 1646 | timings_, |
| 1647 | key_value_store_.get())); |
| 1648 | oat_writers.push_back(std::move(oat_writer)); |
| 1649 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1650 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1651 | |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1652 | if (IsImage()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1653 | // The OatWriter constructor has already updated offsets in methods and we need to |
| 1654 | // prepare method offsets in the image address space for direct method patching. |
| 1655 | TimingLogger::ScopedTiming t2("dex2oat Prepare image address space", timings_); |
| 1656 | if (!image_writer_->PrepareImageAddressSpace()) { |
| 1657 | LOG(ERROR) << "Failed to prepare image address space."; |
| 1658 | return false; |
| 1659 | } |
| 1660 | } |
| 1661 | |
| 1662 | { |
| 1663 | TimingLogger::ScopedTiming t2("dex2oat Write ELF", timings_); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1664 | for (size_t i = 0; i < oat_files_.size(); ++i) { |
| 1665 | std::unique_ptr<File>& oat_file = oat_files_[i]; |
| 1666 | std::unique_ptr<OatWriter>& oat_writer = oat_writers[i]; |
| 1667 | std::unique_ptr<ElfWriter> elf_writer = |
| 1668 | CreateElfWriterQuick(instruction_set_, compiler_options_.get(), oat_file.get()); |
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->Start(); |
Vladimir Marko | 10c1356 | 2015-11-25 14:33:36 +0000 | [diff] [blame] | 1671 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1672 | OutputStream* rodata = elf_writer->StartRoData(); |
| 1673 | if (!oat_writer->WriteRodata(rodata)) { |
| 1674 | LOG(ERROR) << "Failed to write .rodata section to the ELF file " << oat_file->GetPath(); |
| 1675 | return false; |
| 1676 | } |
| 1677 | elf_writer->EndRoData(rodata); |
Vladimir Marko | 10c1356 | 2015-11-25 14:33:36 +0000 | [diff] [blame] | 1678 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1679 | OutputStream* text = elf_writer->StartText(); |
| 1680 | if (!oat_writer->WriteCode(text)) { |
| 1681 | LOG(ERROR) << "Failed to write .text section to the ELF file " << oat_file->GetPath(); |
| 1682 | return false; |
| 1683 | } |
| 1684 | elf_writer->EndText(text); |
Vladimir Marko | 10c1356 | 2015-11-25 14:33:36 +0000 | [diff] [blame] | 1685 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1686 | elf_writer->SetBssSize(oat_writer->GetBssSize()); |
| 1687 | elf_writer->WriteDynamicSection(); |
| 1688 | elf_writer->WriteDebugInfo(oat_writer->GetMethodDebugInfo()); |
| 1689 | elf_writer->WritePatchLocations(oat_writer->GetAbsolutePatchLocations()); |
Vladimir Marko | 10c1356 | 2015-11-25 14:33:36 +0000 | [diff] [blame] | 1690 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1691 | if (!elf_writer->End()) { |
| 1692 | LOG(ERROR) << "Failed to write ELF file " << oat_file->GetPath(); |
| 1693 | return false; |
| 1694 | } |
| 1695 | |
| 1696 | // Flush the oat file. |
| 1697 | if (oat_files_[i] != nullptr) { |
| 1698 | if (oat_files_[i]->Flush() != 0) { |
| 1699 | PLOG(ERROR) << "Failed to flush oat file: " << oat_filenames_[i]; |
| 1700 | oat_files_[i]->Erase(); |
| 1701 | return false; |
| 1702 | } |
| 1703 | } |
| 1704 | |
| 1705 | if (IsImage()) { |
| 1706 | // Update oat estimates. |
| 1707 | UpdateImageWriter(i); |
| 1708 | } |
| 1709 | |
| 1710 | VLOG(compiler) << "Oat file written successfully: " << oat_filenames_[i]; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1711 | } |
| 1712 | } |
| 1713 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1714 | return true; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1715 | } |
| 1716 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1717 | // If we are compiling an image, invoke the image creation routine. Else just skip. |
| 1718 | bool HandleImage() { |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1719 | if (IsImage()) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1720 | TimingLogger::ScopedTiming t("dex2oat ImageWriter", timings_); |
| 1721 | if (!CreateImageFile()) { |
| 1722 | return false; |
| 1723 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1724 | VLOG(compiler) << "Images written successfully"; |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 1725 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1726 | return true; |
| 1727 | } |
| 1728 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1729 | // Create a copy from stripped to unstripped. |
| 1730 | bool CopyStrippedToUnstripped() { |
| 1731 | for (size_t i = 0; i < oat_unstripped_.size(); ++i) { |
| 1732 | // If we don't want to strip in place, copy from stripped location to unstripped location. |
| 1733 | // We need to strip after image creation because FixupElf needs to use .strtab. |
| 1734 | if (strcmp(oat_unstripped_[i], oat_filenames_[i]) != 0) { |
| 1735 | // If the oat file is still open, flush it. |
| 1736 | if (oat_files_[i].get() != nullptr && oat_files_[i]->IsOpened()) { |
| 1737 | if (!FlushCloseOatFile(i)) { |
| 1738 | return false; |
| 1739 | } |
| 1740 | } |
| 1741 | |
| 1742 | TimingLogger::ScopedTiming t("dex2oat OatFile copy", timings_); |
| 1743 | std::unique_ptr<File> in(OS::OpenFileForReading(oat_filenames_[i])); |
| 1744 | std::unique_ptr<File> out(OS::CreateEmptyFile(oat_unstripped_[i])); |
| 1745 | size_t buffer_size = 8192; |
| 1746 | std::unique_ptr<uint8_t[]> buffer(new uint8_t[buffer_size]); |
| 1747 | while (true) { |
| 1748 | int bytes_read = TEMP_FAILURE_RETRY(read(in->Fd(), buffer.get(), buffer_size)); |
| 1749 | if (bytes_read <= 0) { |
| 1750 | break; |
| 1751 | } |
| 1752 | bool write_ok = out->WriteFully(buffer.get(), bytes_read); |
| 1753 | CHECK(write_ok); |
| 1754 | } |
| 1755 | if (out->FlushCloseOrErase() != 0) { |
| 1756 | PLOG(ERROR) << "Failed to flush and close copied oat file: " << oat_unstripped_[i]; |
| 1757 | return false; |
| 1758 | } |
| 1759 | VLOG(compiler) << "Oat file copied successfully (unstripped): " << oat_unstripped_[i]; |
| 1760 | } |
| 1761 | } |
| 1762 | return true; |
| 1763 | } |
| 1764 | |
| 1765 | bool FlushOatFiles() { |
| 1766 | TimingLogger::ScopedTiming t2("dex2oat Flush ELF", timings_); |
| 1767 | for (size_t i = 0; i < oat_files_.size(); ++i) { |
| 1768 | if (oat_files_[i].get() != nullptr) { |
| 1769 | if (oat_files_[i]->Flush() != 0) { |
| 1770 | PLOG(ERROR) << "Failed to flush oat file: " << oat_filenames_[i]; |
| 1771 | oat_files_[i]->Erase(); |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 1772 | return false; |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 1773 | } |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 1774 | } |
Nicolas Geoffray | ea3fa0b | 2014-02-10 11:59:41 +0000 | [diff] [blame] | 1775 | } |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 1776 | return true; |
| 1777 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1778 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1779 | bool FlushCloseOatFile(size_t i) { |
| 1780 | if (oat_files_[i].get() != nullptr) { |
| 1781 | std::unique_ptr<File> tmp(oat_files_[i].release()); |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 1782 | if (tmp->FlushCloseOrErase() != 0) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1783 | PLOG(ERROR) << "Failed to flush and close oat file: " << oat_filenames_[i]; |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 1784 | return false; |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 1785 | } |
| 1786 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1787 | return true; |
| 1788 | } |
| 1789 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1790 | bool FlushCloseOatFiles() { |
| 1791 | bool result = true; |
| 1792 | for (size_t i = 0; i < oat_files_.size(); ++i) { |
| 1793 | result &= FlushCloseOatFile(i); |
| 1794 | } |
| 1795 | return result; |
| 1796 | } |
| 1797 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1798 | void DumpTiming() { |
| 1799 | if (dump_timing_ || (dump_slow_timing_ && timings_->GetTotalNs() > MsToNs(1000))) { |
| 1800 | LOG(INFO) << Dumpable<TimingLogger>(*timings_); |
| 1801 | } |
| 1802 | if (dump_passes_) { |
| 1803 | LOG(INFO) << Dumpable<CumulativeLogger>(*driver_->GetTimingsLogger()); |
| 1804 | } |
| 1805 | } |
| 1806 | |
| 1807 | CompilerOptions* GetCompilerOptions() const { |
| 1808 | return compiler_options_.get(); |
| 1809 | } |
| 1810 | |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 1811 | bool IsImage() const { |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 1812 | return IsAppImage() || IsBootImage(); |
| 1813 | } |
| 1814 | |
| 1815 | bool IsAppImage() const { |
| 1816 | return app_image_; |
| 1817 | } |
| 1818 | |
| 1819 | bool IsBootImage() const { |
| 1820 | return boot_image_; |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 1821 | } |
| 1822 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1823 | bool IsHost() const { |
| 1824 | return is_host_; |
| 1825 | } |
| 1826 | |
Calin Juravle | 998c216 | 2015-12-21 15:39:33 +0200 | [diff] [blame] | 1827 | bool UseProfileGuidedCompilation() const { |
| 1828 | return !profile_files_.empty(); |
| 1829 | } |
| 1830 | |
| 1831 | bool ProcessProfiles() { |
| 1832 | DCHECK(UseProfileGuidedCompilation()); |
| 1833 | ProfileCompilationInfo* info = nullptr; |
| 1834 | if (ProfileAssistant::ProcessProfiles(profile_files_, reference_profile_files_, &info)) { |
| 1835 | profile_compilation_info_.reset(info); |
| 1836 | return true; |
| 1837 | } |
| 1838 | return false; |
| 1839 | } |
| 1840 | |
| 1841 | bool ShouldCompileBasedOnProfiles() const { |
| 1842 | DCHECK(UseProfileGuidedCompilation()); |
| 1843 | // If we are given profiles, compile only if we have new information. |
| 1844 | return profile_compilation_info_ != nullptr; |
| 1845 | } |
| 1846 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1847 | private: |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1848 | template <typename T> |
| 1849 | static std::vector<T*> MakeNonOwningPointerVector(const std::vector<std::unique_ptr<T>>& src) { |
| 1850 | std::vector<T*> result; |
| 1851 | result.reserve(src.size()); |
| 1852 | for (const std::unique_ptr<T>& t : src) { |
| 1853 | result.push_back(t.get()); |
| 1854 | } |
| 1855 | return result; |
| 1856 | } |
| 1857 | |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1858 | static size_t OpenDexFiles(std::vector<const char*>& dex_filenames, |
| 1859 | std::vector<const char*>& dex_locations, |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1860 | std::vector<std::unique_ptr<const DexFile>>* dex_files) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1861 | DCHECK(dex_files != nullptr) << "OpenDexFiles out-param is nullptr"; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1862 | size_t failure_count = 0; |
| 1863 | for (size_t i = 0; i < dex_filenames.size(); i++) { |
| 1864 | const char* dex_filename = dex_filenames[i]; |
| 1865 | const char* dex_location = dex_locations[i]; |
| 1866 | ATRACE_BEGIN(StringPrintf("Opening dex file '%s'", dex_filenames[i]).c_str()); |
| 1867 | std::string error_msg; |
| 1868 | if (!OS::FileExists(dex_filename)) { |
| 1869 | LOG(WARNING) << "Skipping non-existent dex file '" << dex_filename << "'"; |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 1870 | dex_filenames.erase(dex_filenames.begin() + i); |
| 1871 | dex_locations.erase(dex_locations.begin() + i); |
| 1872 | i--; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1873 | continue; |
| 1874 | } |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1875 | if (!DexFile::Open(dex_filename, dex_location, &error_msg, dex_files)) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1876 | LOG(WARNING) << "Failed to open .dex from file '" << dex_filename << "': " << error_msg; |
| 1877 | ++failure_count; |
| 1878 | } |
| 1879 | ATRACE_END(); |
| 1880 | } |
| 1881 | return failure_count; |
| 1882 | } |
| 1883 | |
Andreas Gampe | e3712d0 | 2015-04-09 14:46:31 -0700 | [diff] [blame] | 1884 | // Returns true if dex_files has a dex with the named location. We compare canonical locations, |
| 1885 | // so that relative and absolute paths will match. Not caching for the dex_files isn't very |
| 1886 | // efficient, but under normal circumstances the list is neither large nor is this part too |
| 1887 | // sensitive. |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1888 | static bool DexFilesContains(const std::vector<const DexFile*>& dex_files, |
| 1889 | const std::string& location) { |
Andreas Gampe | e3712d0 | 2015-04-09 14:46:31 -0700 | [diff] [blame] | 1890 | std::string canonical_location(DexFile::GetDexCanonicalLocation(location.c_str())); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1891 | for (size_t i = 0; i < dex_files.size(); ++i) { |
Andreas Gampe | e3712d0 | 2015-04-09 14:46:31 -0700 | [diff] [blame] | 1892 | if (DexFile::GetDexCanonicalLocation(dex_files[i]->GetLocation().c_str()) == |
| 1893 | canonical_location) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1894 | return true; |
| 1895 | } |
| 1896 | } |
| 1897 | return false; |
| 1898 | } |
| 1899 | |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1900 | // Appends to opened_dex_files any elements of class_path that dex_files |
| 1901 | // doesn't already contain. This will open those dex files as necessary. |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1902 | static void OpenClassPathFiles(const std::string& class_path, |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1903 | std::vector<const DexFile*> dex_files, |
| 1904 | std::vector<std::unique_ptr<const DexFile>>* opened_dex_files) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1905 | DCHECK(opened_dex_files != nullptr) << "OpenClassPathFiles out-param is nullptr"; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 1906 | std::vector<std::string> parsed; |
| 1907 | Split(class_path, ':', &parsed); |
| 1908 | // Take Locks::mutator_lock_ so that lock ordering on the ClassLinker::dex_lock_ is maintained. |
| 1909 | ScopedObjectAccess soa(Thread::Current()); |
| 1910 | for (size_t i = 0; i < parsed.size(); ++i) { |
| 1911 | if (DexFilesContains(dex_files, parsed[i])) { |
| 1912 | continue; |
| 1913 | } |
| 1914 | std::string error_msg; |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 1915 | 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] | 1916 | LOG(WARNING) << "Failed to open dex file '" << parsed[i] << "': " << error_msg; |
| 1917 | } |
| 1918 | } |
| 1919 | } |
| 1920 | |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 1921 | bool PrepareImageClasses() { |
| 1922 | // If --image-classes was specified, calculate the full list of classes to include in the image. |
| 1923 | if (image_classes_filename_ != nullptr) { |
| 1924 | image_classes_ = |
| 1925 | ReadClasses(image_classes_zip_filename_, image_classes_filename_, "image"); |
| 1926 | if (image_classes_ == nullptr) { |
| 1927 | return false; |
| 1928 | } |
| 1929 | } else if (IsBootImage()) { |
| 1930 | image_classes_.reset(new std::unordered_set<std::string>); |
| 1931 | } |
| 1932 | return true; |
| 1933 | } |
| 1934 | |
| 1935 | bool PrepareCompiledClasses() { |
| 1936 | // If --compiled-classes was specified, calculate the full list of classes to compile in the |
| 1937 | // image. |
| 1938 | if (compiled_classes_filename_ != nullptr) { |
| 1939 | compiled_classes_ = |
| 1940 | ReadClasses(compiled_classes_zip_filename_, compiled_classes_filename_, "compiled"); |
| 1941 | if (compiled_classes_ == nullptr) { |
| 1942 | return false; |
| 1943 | } |
| 1944 | } else { |
| 1945 | compiled_classes_.reset(nullptr); // By default compile everything. |
| 1946 | } |
| 1947 | return true; |
| 1948 | } |
| 1949 | |
| 1950 | static std::unique_ptr<std::unordered_set<std::string>> ReadClasses(const char* zip_filename, |
| 1951 | const char* classes_filename, |
| 1952 | const char* tag) { |
| 1953 | std::unique_ptr<std::unordered_set<std::string>> classes; |
| 1954 | std::string error_msg; |
| 1955 | if (zip_filename != nullptr) { |
| 1956 | classes.reset(ReadImageClassesFromZip(zip_filename, classes_filename, &error_msg)); |
| 1957 | } else { |
| 1958 | classes.reset(ReadImageClassesFromFile(classes_filename)); |
| 1959 | } |
| 1960 | if (classes == nullptr) { |
| 1961 | LOG(ERROR) << "Failed to create list of " << tag << " classes from '" |
| 1962 | << classes_filename << "': " << error_msg; |
| 1963 | } |
| 1964 | return classes; |
| 1965 | } |
| 1966 | |
| 1967 | bool PrepareCompiledMethods() { |
| 1968 | // If --compiled-methods was specified, read the methods to compile from the given file(s). |
| 1969 | if (compiled_methods_filename_ != nullptr) { |
| 1970 | std::string error_msg; |
| 1971 | if (compiled_methods_zip_filename_ != nullptr) { |
| 1972 | compiled_methods_.reset(ReadCommentedInputFromZip(compiled_methods_zip_filename_, |
| 1973 | compiled_methods_filename_, |
| 1974 | nullptr, // No post-processing. |
| 1975 | &error_msg)); |
| 1976 | } else { |
| 1977 | compiled_methods_.reset(ReadCommentedInputFromFile(compiled_methods_filename_, |
| 1978 | nullptr)); // No post-processing. |
| 1979 | } |
| 1980 | if (compiled_methods_.get() == nullptr) { |
| 1981 | LOG(ERROR) << "Failed to create list of compiled methods from '" |
| 1982 | << compiled_methods_filename_ << "': " << error_msg; |
| 1983 | return false; |
| 1984 | } |
| 1985 | } else { |
| 1986 | compiled_methods_.reset(nullptr); // By default compile everything. |
| 1987 | } |
| 1988 | return true; |
| 1989 | } |
| 1990 | |
| 1991 | void SaveDexInput() { |
| 1992 | for (size_t i = 0; i < dex_files_.size(); ++i) { |
| 1993 | const DexFile* dex_file = dex_files_[i]; |
| 1994 | std::string tmp_file_name(StringPrintf("/data/local/tmp/dex2oat.%d.%zd.dex", |
| 1995 | getpid(), i)); |
| 1996 | std::unique_ptr<File> tmp_file(OS::CreateEmptyFile(tmp_file_name.c_str())); |
| 1997 | if (tmp_file.get() == nullptr) { |
| 1998 | PLOG(ERROR) << "Failed to open file " << tmp_file_name |
| 1999 | << ". Try: adb shell chmod 777 /data/local/tmp"; |
| 2000 | continue; |
| 2001 | } |
| 2002 | // This is just dumping files for debugging. Ignore errors, and leave remnants. |
| 2003 | UNUSED(tmp_file->WriteFully(dex_file->Begin(), dex_file->Size())); |
| 2004 | UNUSED(tmp_file->Flush()); |
| 2005 | UNUSED(tmp_file->Close()); |
| 2006 | LOG(INFO) << "Wrote input to " << tmp_file_name; |
| 2007 | } |
| 2008 | } |
| 2009 | |
| 2010 | bool PrepareRuntimeOptions(RuntimeArgumentMap* runtime_options) { |
| 2011 | RuntimeOptions raw_options; |
| 2012 | if (boot_image_filename_.empty()) { |
| 2013 | std::string boot_class_path = "-Xbootclasspath:"; |
| 2014 | boot_class_path += Join(dex_filenames_, ':'); |
| 2015 | raw_options.push_back(std::make_pair(boot_class_path, nullptr)); |
| 2016 | std::string boot_class_path_locations = "-Xbootclasspath-locations:"; |
| 2017 | boot_class_path_locations += Join(dex_locations_, ':'); |
| 2018 | raw_options.push_back(std::make_pair(boot_class_path_locations, nullptr)); |
| 2019 | } else { |
| 2020 | std::string boot_image_option = "-Ximage:"; |
| 2021 | boot_image_option += boot_image_filename_; |
| 2022 | raw_options.push_back(std::make_pair(boot_image_option, nullptr)); |
| 2023 | } |
| 2024 | for (size_t i = 0; i < runtime_args_.size(); i++) { |
| 2025 | raw_options.push_back(std::make_pair(runtime_args_[i], nullptr)); |
| 2026 | } |
| 2027 | |
| 2028 | raw_options.push_back(std::make_pair("compilercallbacks", callbacks_.get())); |
| 2029 | raw_options.push_back( |
| 2030 | std::make_pair("imageinstructionset", GetInstructionSetString(instruction_set_))); |
| 2031 | |
| 2032 | // Only allow no boot image for the runtime if we're compiling one. When we compile an app, |
| 2033 | // we don't want fallback mode, it will abort as we do not push a boot classpath (it might |
| 2034 | // have been stripped in preopting, anyways). |
| 2035 | if (!IsBootImage()) { |
| 2036 | raw_options.push_back(std::make_pair("-Xno-dex-file-fallback", nullptr)); |
| 2037 | } |
| 2038 | // Disable libsigchain. We don't don't need it during compilation and it prevents us |
| 2039 | // from getting a statically linked version of dex2oat (because of dlsym and RTLD_NEXT). |
| 2040 | raw_options.push_back(std::make_pair("-Xno-sig-chain", nullptr)); |
| 2041 | |
| 2042 | if (!Runtime::ParseOptions(raw_options, false, runtime_options)) { |
| 2043 | LOG(ERROR) << "Failed to parse runtime options"; |
| 2044 | return false; |
| 2045 | } |
| 2046 | return true; |
| 2047 | } |
| 2048 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2049 | // Create a runtime necessary for compilation. |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 2050 | bool CreateRuntime(RuntimeArgumentMap&& runtime_options) |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2051 | SHARED_TRYLOCK_FUNCTION(true, Locks::mutator_lock_) { |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 2052 | if (!Runtime::Create(std::move(runtime_options))) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2053 | LOG(ERROR) << "Failed to create runtime"; |
| 2054 | return false; |
| 2055 | } |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 2056 | runtime_.reset(Runtime::Current()); |
| 2057 | runtime_->SetInstructionSet(instruction_set_); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2058 | for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) { |
| 2059 | Runtime::CalleeSaveType type = Runtime::CalleeSaveType(i); |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 2060 | if (!runtime_->HasCalleeSaveMethod(type)) { |
| 2061 | runtime_->SetCalleeSaveMethod(runtime_->CreateCalleeSaveMethod(), type); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2062 | } |
| 2063 | } |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 2064 | runtime_->GetClassLinker()->FixupDexCaches(runtime_->GetResolutionMethod()); |
Andreas Gampe | 2969bcd | 2015-03-09 12:57:41 -0700 | [diff] [blame] | 2065 | |
| 2066 | // Initialize maps for unstarted runtime. This needs to be here, as running clinits needs this |
| 2067 | // set up. |
Andreas Gampe | 799681b | 2015-05-15 19:24:12 -0700 | [diff] [blame] | 2068 | interpreter::UnstartedRuntime::Initialize(); |
Andreas Gampe | 2969bcd | 2015-03-09 12:57:41 -0700 | [diff] [blame] | 2069 | |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 2070 | runtime_->GetClassLinker()->RunRootClinits(); |
Andreas Gampe | 2969bcd | 2015-03-09 12:57:41 -0700 | [diff] [blame] | 2071 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2072 | return true; |
| 2073 | } |
| 2074 | |
| 2075 | void PrepareImageWriter(uintptr_t image_base) { |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 2076 | DCHECK(IsImage()); |
| 2077 | image_writer_.reset(new ImageWriter(*driver_, |
| 2078 | image_base, |
| 2079 | compiler_options_->GetCompilePic(), |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 2080 | IsAppImage(), |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2081 | image_storage_mode_, |
| 2082 | oat_filenames_, |
| 2083 | dex_file_oat_filename_map_)); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2084 | } |
| 2085 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2086 | // 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] | 2087 | bool CreateImageFile() |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2088 | REQUIRES(!Locks::mutator_lock_) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2089 | CHECK(image_writer_ != nullptr); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2090 | if (!IsBootImage()) { |
| 2091 | image_filenames_.push_back(app_image_file_name_.c_str()); |
| 2092 | } |
| 2093 | if (!image_writer_->Write(app_image_fd_, image_filenames_, oat_filenames_)) { |
| 2094 | LOG(ERROR) << "Failure during image file creation"; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2095 | return false; |
| 2096 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2097 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2098 | // We need the OatDataBegin entries. |
| 2099 | std::map<const char*, uintptr_t> oat_data_begins; |
| 2100 | for (const char* oat_filename : oat_filenames_) { |
| 2101 | oat_data_begins.emplace(oat_filename, image_writer_->GetOatDataBegin(oat_filename)); |
| 2102 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2103 | // Destroy ImageWriter before doing FixupElf. |
| 2104 | image_writer_.reset(); |
| 2105 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2106 | for (const char* oat_filename : oat_filenames_) { |
| 2107 | // Do not fix up the ELF file if we are --compile-pic or compiling the app image |
| 2108 | if (!compiler_options_->GetCompilePic() && IsBootImage()) { |
| 2109 | std::unique_ptr<File> oat_file(OS::OpenFileReadWrite(oat_filename)); |
| 2110 | if (oat_file.get() == nullptr) { |
| 2111 | PLOG(ERROR) << "Failed to open ELF file: " << oat_filename; |
| 2112 | return false; |
| 2113 | } |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 2114 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2115 | uintptr_t oat_data_begin = oat_data_begins.find(oat_filename)->second; |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 2116 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2117 | if (!ElfWriter::Fixup(oat_file.get(), oat_data_begin)) { |
| 2118 | oat_file->Erase(); |
| 2119 | LOG(ERROR) << "Failed to fixup ELF file " << oat_file->GetPath(); |
| 2120 | return false; |
| 2121 | } |
| 2122 | |
| 2123 | if (oat_file->FlushCloseOrErase()) { |
| 2124 | PLOG(ERROR) << "Failed to flush and close fixed ELF file " << oat_file->GetPath(); |
| 2125 | return false; |
| 2126 | } |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 2127 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2128 | } |
| 2129 | |
| 2130 | return true; |
| 2131 | } |
| 2132 | |
| 2133 | // 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] | 2134 | static std::unordered_set<std::string>* ReadImageClassesFromFile( |
| 2135 | const char* image_classes_filename) { |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2136 | std::function<std::string(const char*)> process = DotToDescriptor; |
| 2137 | return ReadCommentedInputFromFile(image_classes_filename, &process); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2138 | } |
| 2139 | |
| 2140 | // 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] | 2141 | static std::unordered_set<std::string>* ReadImageClassesFromZip( |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2142 | const char* zip_filename, |
| 2143 | const char* image_classes_filename, |
| 2144 | std::string* error_msg) { |
| 2145 | std::function<std::string(const char*)> process = DotToDescriptor; |
| 2146 | return ReadCommentedInputFromZip(zip_filename, image_classes_filename, &process, error_msg); |
| 2147 | } |
| 2148 | |
| 2149 | // Read lines from the given file, dropping comments and empty lines. Post-process each line with |
| 2150 | // the given function. |
| 2151 | static std::unordered_set<std::string>* ReadCommentedInputFromFile( |
| 2152 | const char* input_filename, std::function<std::string(const char*)>* process) { |
| 2153 | std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in)); |
| 2154 | if (input_file.get() == nullptr) { |
| 2155 | LOG(ERROR) << "Failed to open input file " << input_filename; |
| 2156 | return nullptr; |
| 2157 | } |
| 2158 | std::unique_ptr<std::unordered_set<std::string>> result( |
| 2159 | ReadCommentedInputStream(*input_file, process)); |
| 2160 | input_file->close(); |
| 2161 | return result.release(); |
| 2162 | } |
| 2163 | |
| 2164 | // Read lines from the given file from the given zip file, dropping comments and empty lines. |
| 2165 | // Post-process each line with the given function. |
| 2166 | static std::unordered_set<std::string>* ReadCommentedInputFromZip( |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 2167 | const char* zip_filename, |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2168 | const char* input_filename, |
| 2169 | std::function<std::string(const char*)>* process, |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 2170 | std::string* error_msg) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2171 | std::unique_ptr<ZipArchive> zip_archive(ZipArchive::Open(zip_filename, error_msg)); |
| 2172 | if (zip_archive.get() == nullptr) { |
| 2173 | return nullptr; |
| 2174 | } |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2175 | 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] | 2176 | if (zip_entry.get() == nullptr) { |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2177 | *error_msg = StringPrintf("Failed to find '%s' within '%s': %s", input_filename, |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2178 | zip_filename, error_msg->c_str()); |
| 2179 | return nullptr; |
| 2180 | } |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2181 | std::unique_ptr<MemMap> input_file(zip_entry->ExtractToMemMap(zip_filename, |
| 2182 | input_filename, |
| 2183 | error_msg)); |
| 2184 | if (input_file.get() == nullptr) { |
| 2185 | *error_msg = StringPrintf("Failed to extract '%s' from '%s': %s", input_filename, |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2186 | zip_filename, error_msg->c_str()); |
| 2187 | return nullptr; |
| 2188 | } |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2189 | const std::string input_string(reinterpret_cast<char*>(input_file->Begin()), |
| 2190 | input_file->Size()); |
| 2191 | std::istringstream input_stream(input_string); |
| 2192 | return ReadCommentedInputStream(input_stream, process); |
| 2193 | } |
| 2194 | |
| 2195 | // Read lines from the given stream, dropping comments and empty lines. Post-process each line |
| 2196 | // with the given function. |
| 2197 | static std::unordered_set<std::string>* ReadCommentedInputStream( |
| 2198 | std::istream& in_stream, |
| 2199 | std::function<std::string(const char*)>* process) { |
| 2200 | std::unique_ptr<std::unordered_set<std::string>> image_classes( |
| 2201 | new std::unordered_set<std::string>); |
| 2202 | while (in_stream.good()) { |
| 2203 | std::string dot; |
| 2204 | std::getline(in_stream, dot); |
| 2205 | if (StartsWith(dot, "#") || dot.empty()) { |
| 2206 | continue; |
| 2207 | } |
| 2208 | if (process != nullptr) { |
| 2209 | std::string descriptor((*process)(dot.c_str())); |
| 2210 | image_classes->insert(descriptor); |
| 2211 | } else { |
| 2212 | image_classes->insert(dot); |
| 2213 | } |
| 2214 | } |
| 2215 | return image_classes.release(); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2216 | } |
| 2217 | |
Mathieu Chartier | 49285c5 | 2014-12-02 15:43:48 -0800 | [diff] [blame] | 2218 | void LogCompletionTime() { |
Andreas Gampe | 1d00add | 2015-02-27 19:35:46 -0800 | [diff] [blame] | 2219 | // Note: when creation of a runtime fails, e.g., when trying to compile an app but when there |
| 2220 | // is no image, there won't be a Runtime::Current(). |
Brian Carlstrom | a11a34c | 2015-03-06 08:44:45 -0800 | [diff] [blame] | 2221 | // Note: driver creation can fail when loading an invalid dex file. |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2222 | LOG(INFO) << "dex2oat took " << PrettyDuration(NanoTime() - start_ns_) |
Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 2223 | << " (threads: " << thread_count_ << ") " |
Andreas Gampe | 3f30e12 | 2015-09-17 14:03:21 -0700 | [diff] [blame] | 2224 | << ((Runtime::Current() != nullptr && driver_ != nullptr) ? |
Andreas Gampe | 1d00add | 2015-02-27 19:35:46 -0800 | [diff] [blame] | 2225 | driver_->GetMemoryUsageString(kIsDebugBuild || VLOG_IS_ON(compiler)) : |
| 2226 | ""); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2227 | } |
| 2228 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2229 | std::string StripIsaFrom(const char* image_filename, InstructionSet isa) { |
| 2230 | std::string res(image_filename); |
| 2231 | size_t last_slash = res.rfind('/'); |
| 2232 | if (last_slash == std::string::npos || last_slash == 0) { |
| 2233 | return res; |
| 2234 | } |
| 2235 | size_t penultimate_slash = res.rfind('/', last_slash - 1); |
| 2236 | if (penultimate_slash == std::string::npos) { |
| 2237 | return res; |
| 2238 | } |
| 2239 | // Check that the string in-between is the expected one. |
| 2240 | if (res.substr(penultimate_slash + 1, last_slash - penultimate_slash - 1) != |
| 2241 | GetInstructionSetString(isa)) { |
| 2242 | LOG(WARNING) << "Unexpected string when trying to strip isa: " << res; |
| 2243 | return res; |
| 2244 | } |
| 2245 | return res.substr(0, penultimate_slash) + res.substr(last_slash); |
| 2246 | } |
| 2247 | |
| 2248 | // Update the estimate for the oat file with the given index. |
| 2249 | void UpdateImageWriter(size_t index) { |
| 2250 | DCHECK(image_writer_ != nullptr); |
| 2251 | DCHECK_LT(index, oat_filenames_.size()); |
| 2252 | |
| 2253 | image_writer_->UpdateOatFile(oat_filenames_[index]); |
| 2254 | } |
| 2255 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2256 | std::unique_ptr<CompilerOptions> compiler_options_; |
| 2257 | Compiler::Kind compiler_kind_; |
| 2258 | |
| 2259 | InstructionSet instruction_set_; |
| 2260 | std::unique_ptr<const InstructionSetFeatures> instruction_set_features_; |
| 2261 | |
| 2262 | std::unique_ptr<SafeMap<std::string, std::string> > key_value_store_; |
| 2263 | |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 2264 | std::unique_ptr<VerificationResults> verification_results_; |
Andreas Gampe | 3f30e12 | 2015-09-17 14:03:21 -0700 | [diff] [blame] | 2265 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2266 | DexFileToMethodInlinerMap method_inliner_map_; |
| 2267 | std::unique_ptr<QuickCompilerCallbacks> callbacks_; |
| 2268 | |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 2269 | // Ownership for the class path files. |
| 2270 | std::vector<std::unique_ptr<const DexFile>> class_path_files_; |
| 2271 | |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 2272 | std::unique_ptr<Runtime> runtime_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2273 | |
| 2274 | size_t thread_count_; |
| 2275 | uint64_t start_ns_; |
| 2276 | std::unique_ptr<WatchDog> watchdog_; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2277 | std::vector<std::unique_ptr<File>> oat_files_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2278 | std::string oat_location_; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2279 | std::vector<const char*> oat_filenames_; |
| 2280 | std::vector<const char*> oat_unstripped_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2281 | int oat_fd_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2282 | std::vector<const char*> dex_filenames_; |
| 2283 | std::vector<const char*> dex_locations_; |
| 2284 | int zip_fd_; |
| 2285 | std::string zip_location_; |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 2286 | std::string boot_image_filename_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2287 | std::vector<const char*> runtime_args_; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2288 | std::vector<const char*> image_filenames_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2289 | uintptr_t image_base_; |
| 2290 | const char* image_classes_zip_filename_; |
| 2291 | const char* image_classes_filename_; |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 2292 | ImageHeader::StorageMode image_storage_mode_; |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 2293 | const char* compiled_classes_zip_filename_; |
| 2294 | const char* compiled_classes_filename_; |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2295 | const char* compiled_methods_zip_filename_; |
| 2296 | const char* compiled_methods_filename_; |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 2297 | std::unique_ptr<std::unordered_set<std::string>> image_classes_; |
| 2298 | std::unique_ptr<std::unordered_set<std::string>> compiled_classes_; |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2299 | std::unique_ptr<std::unordered_set<std::string>> compiled_methods_; |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 2300 | bool app_image_; |
| 2301 | bool boot_image_; |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 2302 | bool multi_image_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2303 | bool is_host_; |
| 2304 | std::string android_root_; |
| 2305 | std::vector<const DexFile*> dex_files_; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2306 | std::string no_inline_from_string_; |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 2307 | std::vector<jobject> dex_caches_; |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 2308 | std::vector<std::unique_ptr<const DexFile>> opened_dex_files_; |
Andreas Gampe | 3f30e12 | 2015-09-17 14:03:21 -0700 | [diff] [blame] | 2309 | |
Vladimir Marko | 307dac9 | 2015-10-20 11:20:09 +0100 | [diff] [blame] | 2310 | std::unique_ptr<ImageWriter> image_writer_; |
| 2311 | std::unique_ptr<CompilerDriver> driver_; |
Andreas Gampe | 3f30e12 | 2015-09-17 14:03:21 -0700 | [diff] [blame] | 2312 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2313 | std::vector<std::string> verbose_methods_; |
| 2314 | bool dump_stats_; |
| 2315 | bool dump_passes_; |
| 2316 | bool dump_timing_; |
| 2317 | bool dump_slow_timing_; |
David Brazdil | 866c031 | 2015-01-13 21:21:31 +0000 | [diff] [blame] | 2318 | std::string dump_cfg_file_name_; |
Calin Juravle | 87000a9 | 2015-08-24 15:34:44 +0100 | [diff] [blame] | 2319 | bool dump_cfg_append_; |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 2320 | std::string swap_file_name_; |
| 2321 | int swap_fd_; |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 2322 | std::string app_image_file_name_; |
| 2323 | int app_image_fd_; |
Calin Juravle | 998c216 | 2015-12-21 15:39:33 +0200 | [diff] [blame] | 2324 | std::vector<std::string> profile_files_; |
| 2325 | std::vector<std::string> reference_profile_files_; |
| 2326 | std::unique_ptr<ProfileCompilationInfo> profile_compilation_info_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2327 | TimingLogger* timings_; |
| 2328 | std::unique_ptr<CumulativeLogger> compiler_phases_timings_; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2329 | std::vector<std::vector<const DexFile*>> dex_files_per_oat_file_; |
| 2330 | std::unordered_map<const DexFile*, const char*> dex_file_oat_filename_map_; |
| 2331 | |
| 2332 | // Backing storage. |
| 2333 | std::vector<std::string> char_backing_storage_; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2334 | |
| 2335 | DISALLOW_IMPLICIT_CONSTRUCTORS(Dex2Oat); |
| 2336 | }; |
| 2337 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2338 | static void b13564922() { |
| 2339 | #if defined(__linux__) && defined(__arm__) |
| 2340 | int major, minor; |
| 2341 | struct utsname uts; |
| 2342 | if (uname(&uts) != -1 && |
| 2343 | sscanf(uts.release, "%d.%d", &major, &minor) == 2 && |
| 2344 | ((major < 3) || ((major == 3) && (minor < 4)))) { |
| 2345 | // Kernels before 3.4 don't handle the ASLR well and we can run out of address |
| 2346 | // space (http://b/13564922). Work around the issue by inhibiting further mmap() randomization. |
| 2347 | int old_personality = personality(0xffffffff); |
| 2348 | if ((old_personality & ADDR_NO_RANDOMIZE) == 0) { |
| 2349 | int new_personality = personality(old_personality | ADDR_NO_RANDOMIZE); |
| 2350 | if (new_personality == -1) { |
| 2351 | LOG(WARNING) << "personality(. | ADDR_NO_RANDOMIZE) failed."; |
| 2352 | } |
| 2353 | } |
| 2354 | } |
| 2355 | #endif |
| 2356 | } |
| 2357 | |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2358 | static int CompileImage(Dex2Oat& dex2oat) { |
| 2359 | dex2oat.Compile(); |
| 2360 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2361 | if (!dex2oat.CreateOatFiles()) { |
| 2362 | dex2oat.EraseOatFiles(); |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2363 | return EXIT_FAILURE; |
| 2364 | } |
| 2365 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2366 | // Close the image oat files. We always expect the output file by name, and it will be |
| 2367 | // re-opened from the unstripped name. Note: it's easier to *flush* and close... |
| 2368 | if (!dex2oat.FlushCloseOatFiles()) { |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2369 | return EXIT_FAILURE; |
| 2370 | } |
| 2371 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2372 | // Creates the boot.art and patches the oat files. |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2373 | if (!dex2oat.HandleImage()) { |
| 2374 | return EXIT_FAILURE; |
| 2375 | } |
| 2376 | |
| 2377 | // When given --host, finish early without stripping. |
| 2378 | if (dex2oat.IsHost()) { |
| 2379 | dex2oat.DumpTiming(); |
| 2380 | return EXIT_SUCCESS; |
| 2381 | } |
| 2382 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2383 | // Copy stripped to unstripped location, if necessary. |
| 2384 | if (!dex2oat.CopyStrippedToUnstripped()) { |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2385 | return EXIT_FAILURE; |
| 2386 | } |
| 2387 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2388 | // FlushClose again, as stripping might have re-opened the oat files. |
| 2389 | if (!dex2oat.FlushCloseOatFiles()) { |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2390 | return EXIT_FAILURE; |
| 2391 | } |
| 2392 | |
| 2393 | dex2oat.DumpTiming(); |
| 2394 | return EXIT_SUCCESS; |
| 2395 | } |
| 2396 | |
| 2397 | static int CompileApp(Dex2Oat& dex2oat) { |
| 2398 | dex2oat.Compile(); |
| 2399 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2400 | if (!dex2oat.CreateOatFiles()) { |
| 2401 | dex2oat.EraseOatFiles(); |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2402 | return EXIT_FAILURE; |
| 2403 | } |
| 2404 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2405 | // 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] | 2406 | // which we would lose. |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2407 | |
| 2408 | // When given --host, finish early without stripping. |
| 2409 | if (dex2oat.IsHost()) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2410 | if (!dex2oat.FlushCloseOatFiles()) { |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2411 | return EXIT_FAILURE; |
| 2412 | } |
| 2413 | |
| 2414 | dex2oat.DumpTiming(); |
| 2415 | return EXIT_SUCCESS; |
| 2416 | } |
| 2417 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2418 | // Copy stripped to unstripped location, if necessary. This will implicitly flush & close the |
| 2419 | // stripped versions. If this is given, we expect to be able to open writable files by name. |
| 2420 | if (!dex2oat.CopyStrippedToUnstripped()) { |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2421 | return EXIT_FAILURE; |
| 2422 | } |
| 2423 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2424 | // Flush and close the files. |
| 2425 | if (!dex2oat.FlushCloseOatFiles()) { |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2426 | return EXIT_FAILURE; |
| 2427 | } |
| 2428 | |
| 2429 | dex2oat.DumpTiming(); |
| 2430 | return EXIT_SUCCESS; |
| 2431 | } |
| 2432 | |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2433 | static int dex2oat(int argc, char** argv) { |
| 2434 | b13564922(); |
| 2435 | |
| 2436 | TimingLogger timings("compiler", false, false); |
| 2437 | |
| 2438 | Dex2Oat dex2oat(&timings); |
| 2439 | |
| 2440 | // Parse arguments. Argument mistakes will lead to exit(EXIT_FAILURE) in UsageError. |
| 2441 | dex2oat.ParseArgs(argc, argv); |
| 2442 | |
Calin Juravle | 998c216 | 2015-12-21 15:39:33 +0200 | [diff] [blame] | 2443 | // Process profile information and assess if we need to do a profile guided compilation. |
| 2444 | // This operation involves I/O. |
| 2445 | if (dex2oat.UseProfileGuidedCompilation()) { |
| 2446 | if (dex2oat.ProcessProfiles()) { |
| 2447 | if (!dex2oat.ShouldCompileBasedOnProfiles()) { |
| 2448 | LOG(INFO) << "Skipped compilation because of insignificant profile delta"; |
| 2449 | return EXIT_SUCCESS; |
| 2450 | } |
| 2451 | } else { |
| 2452 | LOG(WARNING) << "Failed to process profile files"; |
| 2453 | return EXIT_FAILURE; |
| 2454 | } |
| 2455 | } |
| 2456 | |
Andreas Gampe | 046c706 | 2015-05-18 23:22:54 -0700 | [diff] [blame] | 2457 | // Print the complete line when any of the following is true: |
| 2458 | // 1) Debug build |
| 2459 | // 2) Compiling an image |
| 2460 | // 3) Compiling with --host |
| 2461 | // 4) Compiling on the host (not a target build) |
| 2462 | // Otherwise, print a stripped command line. |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 2463 | if (kIsDebugBuild || dex2oat.IsBootImage() || dex2oat.IsHost() || !kIsTargetBuild) { |
Andreas Gampe | 046c706 | 2015-05-18 23:22:54 -0700 | [diff] [blame] | 2464 | LOG(INFO) << CommandLine(); |
| 2465 | } else { |
| 2466 | LOG(INFO) << StrippedCommandLine(); |
| 2467 | } |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2468 | |
| 2469 | if (!dex2oat.Setup()) { |
Jeff Hao | 436183f | 2016-01-12 16:36:50 -0800 | [diff] [blame^] | 2470 | return EXIT_FAILURE; |
| 2471 | } |
| 2472 | |
| 2473 | // Check early that the result of compilation can be written |
| 2474 | if (!dex2oat.OpenFile()) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2475 | dex2oat.EraseOatFiles(); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2476 | return EXIT_FAILURE; |
| 2477 | } |
| 2478 | |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 2479 | bool result; |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2480 | if (dex2oat.IsImage()) { |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 2481 | result = CompileImage(dex2oat); |
Andreas Gampe | 10e477d | 2014-11-19 12:57:42 -0800 | [diff] [blame] | 2482 | } else { |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 2483 | result = CompileApp(dex2oat); |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2484 | } |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 2485 | |
| 2486 | dex2oat.Shutdown(); |
| 2487 | return result; |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2488 | } |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 2489 | } // namespace art |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2490 | |
| 2491 | int main(int argc, char** argv) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2492 | int result = art::dex2oat(argc, argv); |
| 2493 | // Everything was done, do an explicit exit here to avoid running Runtime destructors that take |
| 2494 | // time (bug 10645725) unless we're a debug build or running on valgrind. Note: The Dex2Oat class |
| 2495 | // should not destruct the runtime in this case. |
Evgenii Stepanov | 1e13374 | 2015-05-20 12:30:59 -0700 | [diff] [blame] | 2496 | if (!art::kIsDebugBuild && (RUNNING_ON_MEMORY_TOOL == 0)) { |
Andreas Gampe | 88ec7f4 | 2014-11-05 10:18:32 -0800 | [diff] [blame] | 2497 | exit(result); |
| 2498 | } |
| 2499 | return result; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2500 | } |