Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 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 | 8cf9cb3 | 2017-07-19 09:28:38 -0700 | [diff] [blame] | 17 | #include <errno.h> |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 18 | #include <stdio.h> |
| 19 | #include <stdlib.h> |
| 20 | #include <sys/file.h> |
Calin Juravle | e10c1e2 | 2018-01-26 20:10:15 -0800 | [diff] [blame] | 21 | #include <sys/param.h> |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 22 | #include <unistd.h> |
| 23 | |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 24 | #include <fstream> |
Calin Juravle | 876f350 | 2016-03-24 16:16:34 +0000 | [diff] [blame] | 25 | #include <iostream> |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 26 | #include <set> |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 27 | #include <string> |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 28 | #include <unordered_set> |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 29 | #include <vector> |
| 30 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 31 | #include "android-base/stringprintf.h" |
Andreas Gampe | 9186ced | 2016-12-12 14:28:21 -0800 | [diff] [blame] | 32 | #include "android-base/strings.h" |
| 33 | |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 34 | #include "base/dumpable.h" |
Andreas Gampe | 5794381 | 2017-12-06 21:39:13 -0800 | [diff] [blame] | 35 | #include "base/logging.h" // For InitLogging. |
David Sehr | 671af6c | 2018-05-17 11:00:35 -0700 | [diff] [blame] | 36 | #include "base/mem_map.h" |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 37 | #include "base/scoped_flock.h" |
Mathieu Chartier | 0573f85 | 2018-10-01 13:52:12 -0700 | [diff] [blame] | 38 | #include "base/stl_util.h" |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 39 | #include "base/stringpiece.h" |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 40 | #include "base/time_utils.h" |
| 41 | #include "base/unix_file/fd_file.h" |
David Sehr | c431b9d | 2018-03-02 12:01:51 -0800 | [diff] [blame] | 42 | #include "base/utils.h" |
David Sehr | 79e2607 | 2018-04-06 17:58:50 -0700 | [diff] [blame] | 43 | #include "base/zip_archive.h" |
Mathieu Chartier | 2f79455 | 2017-06-19 10:58:08 -0700 | [diff] [blame] | 44 | #include "boot_image_profile.h" |
Mathieu Chartier | 818cb80 | 2018-05-11 05:30:16 +0000 | [diff] [blame] | 45 | #include "dex/art_dex_file_loader.h" |
David Sehr | 312f3b2 | 2018-03-19 08:39:26 -0700 | [diff] [blame] | 46 | #include "dex/bytecode_utils.h" |
Mathieu Chartier | 20f4992 | 2018-05-24 16:04:17 -0700 | [diff] [blame] | 47 | #include "dex/class_accessor-inl.h" |
David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 48 | #include "dex/code_item_accessors-inl.h" |
| 49 | #include "dex/dex_file.h" |
| 50 | #include "dex/dex_file_loader.h" |
| 51 | #include "dex/dex_file_types.h" |
David Sehr | 312f3b2 | 2018-03-19 08:39:26 -0700 | [diff] [blame] | 52 | #include "dex/type_reference.h" |
David Sehr | 82d046e | 2018-04-23 08:14:19 -0700 | [diff] [blame] | 53 | #include "profile/profile_compilation_info.h" |
Mathieu Chartier | dbddc22 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 54 | #include "profile_assistant.h" |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 55 | |
| 56 | namespace art { |
| 57 | |
| 58 | static int original_argc; |
| 59 | static char** original_argv; |
| 60 | |
| 61 | static std::string CommandLine() { |
| 62 | std::vector<std::string> command; |
| 63 | for (int i = 0; i < original_argc; ++i) { |
| 64 | command.push_back(original_argv[i]); |
| 65 | } |
Andreas Gampe | 9186ced | 2016-12-12 14:28:21 -0800 | [diff] [blame] | 66 | return android::base::Join(command, ' '); |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 67 | } |
| 68 | |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 69 | static constexpr int kInvalidFd = -1; |
| 70 | |
| 71 | static bool FdIsValid(int fd) { |
| 72 | return fd != kInvalidFd; |
| 73 | } |
| 74 | |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 75 | static void UsageErrorV(const char* fmt, va_list ap) { |
| 76 | std::string error; |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 77 | android::base::StringAppendV(&error, fmt, ap); |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 78 | LOG(ERROR) << error; |
| 79 | } |
| 80 | |
| 81 | static void UsageError(const char* fmt, ...) { |
| 82 | va_list ap; |
| 83 | va_start(ap, fmt); |
| 84 | UsageErrorV(fmt, ap); |
| 85 | va_end(ap); |
| 86 | } |
| 87 | |
| 88 | NO_RETURN static void Usage(const char *fmt, ...) { |
| 89 | va_list ap; |
| 90 | va_start(ap, fmt); |
| 91 | UsageErrorV(fmt, ap); |
| 92 | va_end(ap); |
| 93 | |
| 94 | UsageError("Command: %s", CommandLine().c_str()); |
| 95 | UsageError("Usage: profman [options]..."); |
| 96 | UsageError(""); |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 97 | UsageError(" --dump-only: dumps the content of the specified profile files"); |
| 98 | UsageError(" to standard output (default) in a human readable form."); |
| 99 | UsageError(""); |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 100 | UsageError(" --dump-output-to-fd=<number>: redirects --dump-only output to a file descriptor."); |
| 101 | UsageError(""); |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 102 | UsageError(" --dump-classes-and-methods: dumps a sorted list of classes and methods that are"); |
| 103 | UsageError(" in the specified profile file to standard output (default) in a human"); |
| 104 | UsageError(" readable form. The output is valid input for --create-profile-from"); |
Calin Juravle | 876f350 | 2016-03-24 16:16:34 +0000 | [diff] [blame] | 105 | UsageError(""); |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 106 | UsageError(" --profile-file=<filename>: specify profiler output file to use for compilation."); |
| 107 | UsageError(" Can be specified multiple time, in which case the data from the different"); |
| 108 | UsageError(" profiles will be aggregated."); |
| 109 | UsageError(""); |
| 110 | UsageError(" --profile-file-fd=<number>: same as --profile-file but accepts a file descriptor."); |
| 111 | UsageError(" Cannot be used together with --profile-file."); |
| 112 | UsageError(""); |
| 113 | UsageError(" --reference-profile-file=<filename>: specify a reference profile."); |
| 114 | UsageError(" The data in this file will be compared with the data obtained by merging"); |
| 115 | UsageError(" all the files specified with --profile-file or --profile-file-fd."); |
| 116 | UsageError(" If the exit code is EXIT_COMPILE then all --profile-file will be merged into"); |
| 117 | UsageError(" --reference-profile-file. "); |
| 118 | UsageError(""); |
| 119 | UsageError(" --reference-profile-file-fd=<number>: same as --reference-profile-file but"); |
| 120 | UsageError(" accepts a file descriptor. Cannot be used together with"); |
| 121 | UsageError(" --reference-profile-file."); |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 122 | UsageError(""); |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 123 | UsageError(" --generate-test-profile=<filename>: generates a random profile file for testing."); |
| 124 | UsageError(" --generate-test-profile-num-dex=<number>: number of dex files that should be"); |
| 125 | UsageError(" included in the generated profile. Defaults to 20."); |
Shubham Ajmera | d704f0b | 2017-07-26 16:33:35 -0700 | [diff] [blame] | 126 | UsageError(" --generate-test-profile-method-percentage=<number>: the percentage from the maximum"); |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 127 | UsageError(" number of methods that should be generated. Defaults to 5."); |
Shubham Ajmera | d704f0b | 2017-07-26 16:33:35 -0700 | [diff] [blame] | 128 | UsageError(" --generate-test-profile-class-percentage=<number>: the percentage from the maximum"); |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 129 | UsageError(" number of classes that should be generated. Defaults to 5."); |
Jeff Hao | f0a31f8 | 2017-03-27 15:50:37 -0700 | [diff] [blame] | 130 | UsageError(" --generate-test-profile-seed=<number>: seed for random number generator used when"); |
| 131 | UsageError(" generating random test profiles. Defaults to using NanoTime."); |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 132 | UsageError(""); |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 133 | UsageError(" --create-profile-from=<filename>: creates a profile from a list of classes and"); |
| 134 | UsageError(" methods."); |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 135 | UsageError(""); |
David Sehr | 546d24f | 2016-06-02 10:46:19 -0700 | [diff] [blame] | 136 | UsageError(" --dex-location=<string>: location string to use with corresponding"); |
| 137 | UsageError(" apk-fd to find dex files"); |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 138 | UsageError(""); |
David Sehr | 546d24f | 2016-06-02 10:46:19 -0700 | [diff] [blame] | 139 | UsageError(" --apk-fd=<number>: file descriptor containing an open APK to"); |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 140 | UsageError(" search for dex files"); |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 141 | UsageError(" --apk-=<filename>: an APK to search for dex files"); |
David Brazdil | f13ac7c | 2018-01-30 10:09:08 +0000 | [diff] [blame] | 142 | UsageError(" --skip-apk-verification: do not attempt to verify APKs"); |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 143 | UsageError(""); |
Mathieu Chartier | 2f79455 | 2017-06-19 10:58:08 -0700 | [diff] [blame] | 144 | UsageError(" --generate-boot-image-profile: Generate a boot image profile based on input"); |
| 145 | UsageError(" profiles. Requires passing in dex files to inspect properties of classes."); |
| 146 | UsageError(" --boot-image-class-threshold=<value>: specify minimum number of class occurrences"); |
| 147 | UsageError(" to include a class in the boot image profile. Default is 10."); |
| 148 | UsageError(" --boot-image-clean-class-threshold=<value>: specify minimum number of clean class"); |
| 149 | UsageError(" occurrences to include a class in the boot image profile. A clean class is a"); |
| 150 | UsageError(" class that doesn't have any static fields or native methods and is likely to"); |
| 151 | UsageError(" remain clean in the image. Default is 3."); |
Mathieu Chartier | 8eecddf | 2017-07-12 16:05:54 -0700 | [diff] [blame] | 152 | UsageError(" --boot-image-sampled-method-threshold=<value>: minimum number of profiles a"); |
| 153 | UsageError(" non-hot method needs to be in order to be hot in the output profile. The"); |
| 154 | UsageError(" default is max int."); |
Calin Juravle | 2dba0ab | 2018-01-22 19:22:24 -0800 | [diff] [blame] | 155 | UsageError(" --copy-and-update-profile-key: if present, profman will copy the profile from"); |
| 156 | UsageError(" the file passed with --profile-fd(file) to the profile passed with"); |
| 157 | UsageError(" --reference-profile-fd(file) and update at the same time the profile-key"); |
| 158 | UsageError(" of entries corresponding to the apks passed with --apk(-fd)."); |
Mathieu Chartier | 2f79455 | 2017-06-19 10:58:08 -0700 | [diff] [blame] | 159 | UsageError(""); |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 160 | |
| 161 | exit(EXIT_FAILURE); |
| 162 | } |
| 163 | |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 164 | // Note: make sure you update the Usage if you change these values. |
| 165 | static constexpr uint16_t kDefaultTestProfileNumDex = 20; |
Shubham Ajmera | d704f0b | 2017-07-26 16:33:35 -0700 | [diff] [blame] | 166 | static constexpr uint16_t kDefaultTestProfileMethodPercentage = 5; |
| 167 | static constexpr uint16_t kDefaultTestProfileClassPercentage = 5; |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 168 | |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 169 | // Separators used when parsing human friendly representation of profiles. |
Igor Murashkin | 2ffb703 | 2017-11-08 13:35:21 -0800 | [diff] [blame] | 170 | static const std::string kMethodSep = "->"; // NOLINT [runtime/string] [4] |
| 171 | static const std::string kMissingTypesMarker = "missing_types"; // NOLINT [runtime/string] [4] |
| 172 | static const std::string kInvalidClassDescriptor = "invalid_class"; // NOLINT [runtime/string] [4] |
| 173 | static const std::string kInvalidMethod = "invalid_method"; // NOLINT [runtime/string] [4] |
| 174 | static const std::string kClassAllMethods = "*"; // NOLINT [runtime/string] [4] |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 175 | static constexpr char kProfileParsingInlineChacheSep = '+'; |
| 176 | static constexpr char kProfileParsingTypeSep = ','; |
| 177 | static constexpr char kProfileParsingFirstCharInSignature = '('; |
Mathieu Chartier | ea650f3 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 178 | static constexpr char kMethodFlagStringHot = 'H'; |
| 179 | static constexpr char kMethodFlagStringStartup = 'S'; |
| 180 | static constexpr char kMethodFlagStringPostStartup = 'P'; |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 181 | |
David Sehr | 671af6c | 2018-05-17 11:00:35 -0700 | [diff] [blame] | 182 | NO_RETURN static void Abort(const char* msg) { |
| 183 | LOG(ERROR) << msg; |
| 184 | exit(1); |
| 185 | } |
| 186 | |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 187 | // TODO(calin): This class has grown too much from its initial design. Split the functionality |
| 188 | // into smaller, more contained pieces. |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 189 | class ProfMan final { |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 190 | public: |
| 191 | ProfMan() : |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 192 | reference_profile_file_fd_(kInvalidFd), |
| 193 | dump_only_(false), |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 194 | dump_classes_and_methods_(false), |
Mathieu Chartier | 2f79455 | 2017-06-19 10:58:08 -0700 | [diff] [blame] | 195 | generate_boot_image_profile_(false), |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 196 | dump_output_to_fd_(kInvalidFd), |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 197 | test_profile_num_dex_(kDefaultTestProfileNumDex), |
Shubham Ajmera | d704f0b | 2017-07-26 16:33:35 -0700 | [diff] [blame] | 198 | test_profile_method_percerntage_(kDefaultTestProfileMethodPercentage), |
| 199 | test_profile_class_percentage_(kDefaultTestProfileClassPercentage), |
Jeff Hao | f0a31f8 | 2017-03-27 15:50:37 -0700 | [diff] [blame] | 200 | test_profile_seed_(NanoTime()), |
Calin Juravle | 2dba0ab | 2018-01-22 19:22:24 -0800 | [diff] [blame] | 201 | start_ns_(NanoTime()), |
| 202 | copy_and_update_profile_key_(false) {} |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 203 | |
| 204 | ~ProfMan() { |
| 205 | LogCompletionTime(); |
| 206 | } |
| 207 | |
| 208 | void ParseArgs(int argc, char **argv) { |
| 209 | original_argc = argc; |
| 210 | original_argv = argv; |
| 211 | |
David Sehr | 671af6c | 2018-05-17 11:00:35 -0700 | [diff] [blame] | 212 | MemMap::Init(); |
| 213 | InitLogging(argv, Abort); |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 214 | |
| 215 | // Skip over the command name. |
| 216 | argv++; |
| 217 | argc--; |
| 218 | |
| 219 | if (argc == 0) { |
| 220 | Usage("No arguments specified"); |
| 221 | } |
| 222 | |
| 223 | for (int i = 0; i < argc; ++i) { |
| 224 | const StringPiece option(argv[i]); |
| 225 | const bool log_options = false; |
| 226 | if (log_options) { |
Calin Juravle | 876f350 | 2016-03-24 16:16:34 +0000 | [diff] [blame] | 227 | LOG(INFO) << "profman: option[" << i << "]=" << argv[i]; |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 228 | } |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 229 | if (option == "--dump-only") { |
| 230 | dump_only_ = true; |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 231 | } else if (option == "--dump-classes-and-methods") { |
| 232 | dump_classes_and_methods_ = true; |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 233 | } else if (option.starts_with("--create-profile-from=")) { |
| 234 | create_profile_from_file_ = option.substr(strlen("--create-profile-from=")).ToString(); |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 235 | } else if (option.starts_with("--dump-output-to-fd=")) { |
| 236 | ParseUintOption(option, "--dump-output-to-fd", &dump_output_to_fd_, Usage); |
Mathieu Chartier | 2f79455 | 2017-06-19 10:58:08 -0700 | [diff] [blame] | 237 | } else if (option == "--generate-boot-image-profile") { |
| 238 | generate_boot_image_profile_ = true; |
| 239 | } else if (option.starts_with("--boot-image-class-threshold=")) { |
| 240 | ParseUintOption(option, |
| 241 | "--boot-image-class-threshold", |
| 242 | &boot_image_options_.image_class_theshold, |
| 243 | Usage); |
| 244 | } else if (option.starts_with("--boot-image-clean-class-threshold=")) { |
| 245 | ParseUintOption(option, |
| 246 | "--boot-image-clean-class-threshold", |
| 247 | &boot_image_options_.image_class_clean_theshold, |
| 248 | Usage); |
Mathieu Chartier | 8eecddf | 2017-07-12 16:05:54 -0700 | [diff] [blame] | 249 | } else if (option.starts_with("--boot-image-sampled-method-threshold=")) { |
| 250 | ParseUintOption(option, |
| 251 | "--boot-image-sampled-method-threshold", |
| 252 | &boot_image_options_.compiled_method_threshold, |
| 253 | Usage); |
Calin Juravle | 876f350 | 2016-03-24 16:16:34 +0000 | [diff] [blame] | 254 | } else if (option.starts_with("--profile-file=")) { |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 255 | profile_files_.push_back(option.substr(strlen("--profile-file=")).ToString()); |
| 256 | } else if (option.starts_with("--profile-file-fd=")) { |
| 257 | ParseFdForCollection(option, "--profile-file-fd", &profile_files_fd_); |
| 258 | } else if (option.starts_with("--reference-profile-file=")) { |
| 259 | reference_profile_file_ = option.substr(strlen("--reference-profile-file=")).ToString(); |
| 260 | } else if (option.starts_with("--reference-profile-file-fd=")) { |
| 261 | ParseUintOption(option, "--reference-profile-file-fd", &reference_profile_file_fd_, Usage); |
David Sehr | 546d24f | 2016-06-02 10:46:19 -0700 | [diff] [blame] | 262 | } else if (option.starts_with("--dex-location=")) { |
| 263 | dex_locations_.push_back(option.substr(strlen("--dex-location=")).ToString()); |
| 264 | } else if (option.starts_with("--apk-fd=")) { |
| 265 | ParseFdForCollection(option, "--apk-fd", &apks_fd_); |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 266 | } else if (option.starts_with("--apk=")) { |
| 267 | apk_files_.push_back(option.substr(strlen("--apk=")).ToString()); |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 268 | } else if (option.starts_with("--generate-test-profile=")) { |
| 269 | test_profile_ = option.substr(strlen("--generate-test-profile=")).ToString(); |
| 270 | } else if (option.starts_with("--generate-test-profile-num-dex=")) { |
| 271 | ParseUintOption(option, |
| 272 | "--generate-test-profile-num-dex", |
| 273 | &test_profile_num_dex_, |
| 274 | Usage); |
Shubham Ajmera | d704f0b | 2017-07-26 16:33:35 -0700 | [diff] [blame] | 275 | } else if (option.starts_with("--generate-test-profile-method-percentage")) { |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 276 | ParseUintOption(option, |
Shubham Ajmera | d704f0b | 2017-07-26 16:33:35 -0700 | [diff] [blame] | 277 | "--generate-test-profile-method-percentage", |
| 278 | &test_profile_method_percerntage_, |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 279 | Usage); |
Shubham Ajmera | d704f0b | 2017-07-26 16:33:35 -0700 | [diff] [blame] | 280 | } else if (option.starts_with("--generate-test-profile-class-percentage")) { |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 281 | ParseUintOption(option, |
Shubham Ajmera | d704f0b | 2017-07-26 16:33:35 -0700 | [diff] [blame] | 282 | "--generate-test-profile-class-percentage", |
| 283 | &test_profile_class_percentage_, |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 284 | Usage); |
Jeff Hao | f0a31f8 | 2017-03-27 15:50:37 -0700 | [diff] [blame] | 285 | } else if (option.starts_with("--generate-test-profile-seed=")) { |
| 286 | ParseUintOption(option, "--generate-test-profile-seed", &test_profile_seed_, Usage); |
Calin Juravle | 02c0879 | 2018-02-15 19:40:48 -0800 | [diff] [blame] | 287 | } else if (option.starts_with("--copy-and-update-profile-key")) { |
| 288 | copy_and_update_profile_key_ = true; |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 289 | } else { |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 290 | Usage("Unknown argument '%s'", option.data()); |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 291 | } |
| 292 | } |
| 293 | |
David Sehr | 153da0e | 2017-02-15 08:54:51 -0800 | [diff] [blame] | 294 | // Validate global consistency between file/fd options. |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 295 | if (!profile_files_.empty() && !profile_files_fd_.empty()) { |
| 296 | Usage("Profile files should not be specified with both --profile-file-fd and --profile-file"); |
| 297 | } |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 298 | if (!reference_profile_file_.empty() && FdIsValid(reference_profile_file_fd_)) { |
| 299 | Usage("Reference profile should not be specified with both " |
| 300 | "--reference-profile-file-fd and --reference-profile-file"); |
| 301 | } |
David Sehr | 153da0e | 2017-02-15 08:54:51 -0800 | [diff] [blame] | 302 | if (!apk_files_.empty() && !apks_fd_.empty()) { |
| 303 | Usage("APK files should not be specified with both --apk-fd and --apk"); |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 304 | } |
| 305 | } |
| 306 | |
Calin Juravle | e10c1e2 | 2018-01-26 20:10:15 -0800 | [diff] [blame] | 307 | struct ProfileFilterKey { |
| 308 | ProfileFilterKey(const std::string& dex_location, uint32_t checksum) |
| 309 | : dex_location_(dex_location), checksum_(checksum) {} |
| 310 | const std::string dex_location_; |
| 311 | uint32_t checksum_; |
| 312 | |
| 313 | bool operator==(const ProfileFilterKey& other) const { |
| 314 | return checksum_ == other.checksum_ && dex_location_ == other.dex_location_; |
| 315 | } |
| 316 | bool operator<(const ProfileFilterKey& other) const { |
| 317 | return checksum_ == other.checksum_ |
| 318 | ? dex_location_ < other.dex_location_ |
| 319 | : checksum_ < other.checksum_; |
| 320 | } |
| 321 | }; |
| 322 | |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 323 | ProfileAssistant::ProcessingResult ProcessProfiles() { |
David Sehr | 153da0e | 2017-02-15 08:54:51 -0800 | [diff] [blame] | 324 | // Validate that at least one profile file was passed, as well as a reference profile. |
| 325 | if (profile_files_.empty() && profile_files_fd_.empty()) { |
| 326 | Usage("No profile files specified."); |
| 327 | } |
| 328 | if (reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { |
| 329 | Usage("No reference profile file specified."); |
| 330 | } |
| 331 | if ((!profile_files_.empty() && FdIsValid(reference_profile_file_fd_)) || |
| 332 | (!profile_files_fd_.empty() && !FdIsValid(reference_profile_file_fd_))) { |
| 333 | Usage("Options --profile-file-fd and --reference-profile-file-fd " |
| 334 | "should only be used together"); |
| 335 | } |
Calin Juravle | e10c1e2 | 2018-01-26 20:10:15 -0800 | [diff] [blame] | 336 | |
| 337 | // Check if we have any apks which we should use to filter the profile data. |
| 338 | std::set<ProfileFilterKey> profile_filter_keys; |
| 339 | if (!GetProfileFilterKeyFromApks(&profile_filter_keys)) { |
| 340 | return ProfileAssistant::kErrorIO; |
| 341 | } |
| 342 | |
| 343 | // Build the profile filter function. If the set of keys is empty it means we |
| 344 | // don't have any apks; as such we do not filter anything. |
| 345 | const ProfileCompilationInfo::ProfileLoadFilterFn& filter_fn = |
| 346 | [profile_filter_keys](const std::string& dex_location, uint32_t checksum) { |
| 347 | if (profile_filter_keys.empty()) { |
| 348 | // No --apk was specified. Accept all dex files. |
| 349 | return true; |
| 350 | } else { |
| 351 | bool res = profile_filter_keys.find( |
| 352 | ProfileFilterKey(dex_location, checksum)) != profile_filter_keys.end(); |
| 353 | return res; |
| 354 | } |
| 355 | }; |
| 356 | |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 357 | ProfileAssistant::ProcessingResult result; |
Calin Juravle | 2dba0ab | 2018-01-22 19:22:24 -0800 | [diff] [blame] | 358 | |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 359 | if (profile_files_.empty()) { |
| 360 | // The file doesn't need to be flushed here (ProcessProfiles will do it) |
| 361 | // so don't check the usage. |
| 362 | File file(reference_profile_file_fd_, false); |
Calin Juravle | 2dba0ab | 2018-01-22 19:22:24 -0800 | [diff] [blame] | 363 | result = ProfileAssistant::ProcessProfiles(profile_files_fd_, |
Calin Juravle | e10c1e2 | 2018-01-26 20:10:15 -0800 | [diff] [blame] | 364 | reference_profile_file_fd_, |
| 365 | filter_fn); |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 366 | CloseAllFds(profile_files_fd_, "profile_files_fd_"); |
| 367 | } else { |
Calin Juravle | e10c1e2 | 2018-01-26 20:10:15 -0800 | [diff] [blame] | 368 | result = ProfileAssistant::ProcessProfiles(profile_files_, |
| 369 | reference_profile_file_, |
| 370 | filter_fn); |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 371 | } |
| 372 | return result; |
| 373 | } |
| 374 | |
Calin Juravle | e10c1e2 | 2018-01-26 20:10:15 -0800 | [diff] [blame] | 375 | bool GetProfileFilterKeyFromApks(std::set<ProfileFilterKey>* profile_filter_keys) { |
| 376 | auto process_fn = [profile_filter_keys](std::unique_ptr<const DexFile>&& dex_file) { |
| 377 | // Store the profile key of the location instead of the location itself. |
| 378 | // This will make the matching in the profile filter method much easier. |
| 379 | profile_filter_keys->emplace(ProfileCompilationInfo::GetProfileDexFileKey( |
| 380 | dex_file->GetLocation()), dex_file->GetLocationChecksum()); |
| 381 | }; |
| 382 | return OpenApkFilesFromLocations(process_fn); |
| 383 | } |
| 384 | |
| 385 | bool OpenApkFilesFromLocations(std::vector<std::unique_ptr<const DexFile>>* dex_files) { |
| 386 | auto process_fn = [dex_files](std::unique_ptr<const DexFile>&& dex_file) { |
| 387 | dex_files->emplace_back(std::move(dex_file)); |
| 388 | }; |
| 389 | return OpenApkFilesFromLocations(process_fn); |
| 390 | } |
| 391 | |
| 392 | bool OpenApkFilesFromLocations( |
Andreas Gampe | bc802de | 2018-06-20 17:24:11 -0700 | [diff] [blame] | 393 | const std::function<void(std::unique_ptr<const DexFile>&&)>& process_fn) { |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 394 | bool use_apk_fd_list = !apks_fd_.empty(); |
| 395 | if (use_apk_fd_list) { |
David Sehr | 153da0e | 2017-02-15 08:54:51 -0800 | [diff] [blame] | 396 | // Get the APKs from the collection of FDs. |
Calin Juravle | e10c1e2 | 2018-01-26 20:10:15 -0800 | [diff] [blame] | 397 | if (dex_locations_.empty()) { |
| 398 | // Try to compute the dex locations from the file paths of the descriptions. |
| 399 | // This will make it easier to invoke profman with --apk-fd and without |
| 400 | // being force to pass --dex-location when the location would be the apk path. |
| 401 | if (!ComputeDexLocationsFromApkFds()) { |
| 402 | return false; |
| 403 | } |
| 404 | } else { |
| 405 | if (dex_locations_.size() != apks_fd_.size()) { |
| 406 | Usage("The number of apk-fds must match the number of dex-locations."); |
| 407 | } |
| 408 | } |
David Sehr | 153da0e | 2017-02-15 08:54:51 -0800 | [diff] [blame] | 409 | } else if (!apk_files_.empty()) { |
Calin Juravle | 02c0879 | 2018-02-15 19:40:48 -0800 | [diff] [blame] | 410 | if (dex_locations_.empty()) { |
| 411 | // If no dex locations are specified use the apk names as locations. |
| 412 | dex_locations_ = apk_files_; |
| 413 | } else if (dex_locations_.size() != apk_files_.size()) { |
| 414 | Usage("The number of apk-fds must match the number of dex-locations."); |
| 415 | } |
David Sehr | 153da0e | 2017-02-15 08:54:51 -0800 | [diff] [blame] | 416 | } else { |
| 417 | // No APKs were specified. |
| 418 | CHECK(dex_locations_.empty()); |
Calin Juravle | e10c1e2 | 2018-01-26 20:10:15 -0800 | [diff] [blame] | 419 | return true; |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 420 | } |
| 421 | static constexpr bool kVerifyChecksum = true; |
| 422 | for (size_t i = 0; i < dex_locations_.size(); ++i) { |
Mathieu Chartier | 818cb80 | 2018-05-11 05:30:16 +0000 | [diff] [blame] | 423 | std::string error_msg; |
| 424 | const ArtDexFileLoader dex_file_loader; |
| 425 | std::vector<std::unique_ptr<const DexFile>> dex_files_for_location; |
Calin Juravle | 1bfe4bd | 2018-04-26 16:00:11 -0700 | [diff] [blame] | 426 | // We do not need to verify the apk for processing profiles. |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 427 | if (use_apk_fd_list) { |
Mathieu Chartier | 818cb80 | 2018-05-11 05:30:16 +0000 | [diff] [blame] | 428 | if (dex_file_loader.OpenZip(apks_fd_[i], |
| 429 | dex_locations_[i], |
Andreas Gampe | 9b031f7 | 2018-10-04 11:03:34 -0700 | [diff] [blame] | 430 | /* verify= */ false, |
Mathieu Chartier | 818cb80 | 2018-05-11 05:30:16 +0000 | [diff] [blame] | 431 | kVerifyChecksum, |
| 432 | &error_msg, |
| 433 | &dex_files_for_location)) { |
| 434 | } else { |
| 435 | LOG(ERROR) << "OpenZip failed for '" << dex_locations_[i] << "' " << error_msg; |
Calin Juravle | e10c1e2 | 2018-01-26 20:10:15 -0800 | [diff] [blame] | 436 | return false; |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 437 | } |
Mathieu Chartier | 818cb80 | 2018-05-11 05:30:16 +0000 | [diff] [blame] | 438 | } else { |
| 439 | if (dex_file_loader.Open(apk_files_[i].c_str(), |
| 440 | dex_locations_[i], |
Andreas Gampe | 9b031f7 | 2018-10-04 11:03:34 -0700 | [diff] [blame] | 441 | /* verify= */ false, |
Mathieu Chartier | 818cb80 | 2018-05-11 05:30:16 +0000 | [diff] [blame] | 442 | kVerifyChecksum, |
| 443 | &error_msg, |
| 444 | &dex_files_for_location)) { |
| 445 | } else { |
| 446 | LOG(ERROR) << "Open failed for '" << dex_locations_[i] << "' " << error_msg; |
| 447 | return false; |
| 448 | } |
David Sehr | 2b80ed4 | 2018-05-08 08:58:15 -0700 | [diff] [blame] | 449 | } |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 450 | for (std::unique_ptr<const DexFile>& dex_file : dex_files_for_location) { |
Calin Juravle | e10c1e2 | 2018-01-26 20:10:15 -0800 | [diff] [blame] | 451 | process_fn(std::move(dex_file)); |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 452 | } |
| 453 | } |
Calin Juravle | e10c1e2 | 2018-01-26 20:10:15 -0800 | [diff] [blame] | 454 | return true; |
| 455 | } |
| 456 | |
| 457 | // Get the dex locations from the apk fds. |
| 458 | // The methods reads the links from /proc/self/fd/ to find the original apk paths |
| 459 | // and puts them in the dex_locations_ vector. |
| 460 | bool ComputeDexLocationsFromApkFds() { |
| 461 | // We can't use a char array of PATH_MAX size without exceeding the frame size. |
| 462 | // So we use a vector as the buffer for the path. |
| 463 | std::vector<char> buffer(PATH_MAX, 0); |
| 464 | for (size_t i = 0; i < apks_fd_.size(); ++i) { |
| 465 | std::string fd_path = "/proc/self/fd/" + std::to_string(apks_fd_[i]); |
| 466 | ssize_t len = readlink(fd_path.c_str(), buffer.data(), buffer.size() - 1); |
| 467 | if (len == -1) { |
| 468 | PLOG(ERROR) << "Could not open path from fd"; |
| 469 | return false; |
| 470 | } |
| 471 | |
| 472 | buffer[len] = '\0'; |
| 473 | dex_locations_.push_back(buffer.data()); |
| 474 | } |
| 475 | return true; |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 476 | } |
| 477 | |
Mathieu Chartier | 2f79455 | 2017-06-19 10:58:08 -0700 | [diff] [blame] | 478 | std::unique_ptr<const ProfileCompilationInfo> LoadProfile(const std::string& filename, int fd) { |
| 479 | if (!filename.empty()) { |
| 480 | fd = open(filename.c_str(), O_RDWR); |
| 481 | if (fd < 0) { |
| 482 | LOG(ERROR) << "Cannot open " << filename << strerror(errno); |
| 483 | return nullptr; |
| 484 | } |
| 485 | } |
| 486 | std::unique_ptr<ProfileCompilationInfo> info(new ProfileCompilationInfo); |
| 487 | if (!info->Load(fd)) { |
| 488 | LOG(ERROR) << "Cannot load profile info from fd=" << fd << "\n"; |
| 489 | return nullptr; |
| 490 | } |
| 491 | return info; |
| 492 | } |
| 493 | |
David Sehr | b18991b | 2017-02-08 20:58:10 -0800 | [diff] [blame] | 494 | int DumpOneProfile(const std::string& banner, |
| 495 | const std::string& filename, |
| 496 | int fd, |
| 497 | const std::vector<std::unique_ptr<const DexFile>>* dex_files, |
| 498 | std::string* dump) { |
Mathieu Chartier | 2f79455 | 2017-06-19 10:58:08 -0700 | [diff] [blame] | 499 | std::unique_ptr<const ProfileCompilationInfo> info(LoadProfile(filename, fd)); |
| 500 | if (info == nullptr) { |
| 501 | LOG(ERROR) << "Cannot load profile info from filename=" << filename << " fd=" << fd; |
Calin Juravle | 876f350 | 2016-03-24 16:16:34 +0000 | [diff] [blame] | 502 | return -1; |
| 503 | } |
Mathieu Chartier | 0573f85 | 2018-10-01 13:52:12 -0700 | [diff] [blame] | 504 | *dump += banner + "\n" + info->DumpInfo(MakeNonOwningPointerVector(*dex_files)) + "\n"; |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 505 | return 0; |
| 506 | } |
| 507 | |
| 508 | int DumpProfileInfo() { |
David Sehr | 153da0e | 2017-02-15 08:54:51 -0800 | [diff] [blame] | 509 | // Validate that at least one profile file or reference was specified. |
| 510 | if (profile_files_.empty() && profile_files_fd_.empty() && |
| 511 | reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { |
| 512 | Usage("No profile files or reference profile specified."); |
| 513 | } |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 514 | static const char* kEmptyString = ""; |
David Sehr | 546d24f | 2016-06-02 10:46:19 -0700 | [diff] [blame] | 515 | static const char* kOrdinaryProfile = "=== profile ==="; |
| 516 | static const char* kReferenceProfile = "=== reference profile ==="; |
Mathieu Chartier | 0573f85 | 2018-10-01 13:52:12 -0700 | [diff] [blame] | 517 | static const char* kDexFiles = "=== Dex files ==="; |
David Sehr | 546d24f | 2016-06-02 10:46:19 -0700 | [diff] [blame] | 518 | |
David Sehr | b18991b | 2017-02-08 20:58:10 -0800 | [diff] [blame] | 519 | std::vector<std::unique_ptr<const DexFile>> dex_files; |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 520 | OpenApkFilesFromLocations(&dex_files); |
Mathieu Chartier | 0573f85 | 2018-10-01 13:52:12 -0700 | [diff] [blame] | 521 | |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 522 | std::string dump; |
Mathieu Chartier | 0573f85 | 2018-10-01 13:52:12 -0700 | [diff] [blame] | 523 | |
| 524 | // Dump checkfiles and corresponding checksums. |
| 525 | dump += kDexFiles; |
| 526 | dump += "\n"; |
| 527 | for (const std::unique_ptr<const DexFile>& dex_file : dex_files) { |
| 528 | std::ostringstream oss; |
| 529 | oss << dex_file->GetLocation() |
| 530 | << " [checksum=" << std::hex << dex_file->GetLocationChecksum() << "]\n"; |
| 531 | dump += oss.str(); |
| 532 | } |
| 533 | |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 534 | // Dump individual profile files. |
| 535 | if (!profile_files_fd_.empty()) { |
| 536 | for (int profile_file_fd : profile_files_fd_) { |
David Sehr | 546d24f | 2016-06-02 10:46:19 -0700 | [diff] [blame] | 537 | int ret = DumpOneProfile(kOrdinaryProfile, |
| 538 | kEmptyString, |
| 539 | profile_file_fd, |
| 540 | &dex_files, |
| 541 | &dump); |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 542 | if (ret != 0) { |
| 543 | return ret; |
| 544 | } |
| 545 | } |
| 546 | } |
Mathieu Chartier | 0573f85 | 2018-10-01 13:52:12 -0700 | [diff] [blame] | 547 | for (const std::string& profile_file : profile_files_) { |
| 548 | int ret = DumpOneProfile(kOrdinaryProfile, profile_file, kInvalidFd, &dex_files, &dump); |
| 549 | if (ret != 0) { |
| 550 | return ret; |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 551 | } |
| 552 | } |
| 553 | // Dump reference profile file. |
| 554 | if (FdIsValid(reference_profile_file_fd_)) { |
David Sehr | 546d24f | 2016-06-02 10:46:19 -0700 | [diff] [blame] | 555 | int ret = DumpOneProfile(kReferenceProfile, |
| 556 | kEmptyString, |
| 557 | reference_profile_file_fd_, |
| 558 | &dex_files, |
| 559 | &dump); |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 560 | if (ret != 0) { |
| 561 | return ret; |
| 562 | } |
| 563 | } |
| 564 | if (!reference_profile_file_.empty()) { |
David Sehr | 546d24f | 2016-06-02 10:46:19 -0700 | [diff] [blame] | 565 | int ret = DumpOneProfile(kReferenceProfile, |
| 566 | reference_profile_file_, |
| 567 | kInvalidFd, |
| 568 | &dex_files, |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 569 | &dump); |
| 570 | if (ret != 0) { |
| 571 | return ret; |
| 572 | } |
| 573 | } |
| 574 | if (!FdIsValid(dump_output_to_fd_)) { |
| 575 | std::cout << dump; |
| 576 | } else { |
Andreas Gampe | 9b031f7 | 2018-10-04 11:03:34 -0700 | [diff] [blame] | 577 | unix_file::FdFile out_fd(dump_output_to_fd_, /*check_usage=*/ false); |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 578 | if (!out_fd.WriteFully(dump.c_str(), dump.length())) { |
| 579 | return -1; |
| 580 | } |
| 581 | } |
Calin Juravle | 876f350 | 2016-03-24 16:16:34 +0000 | [diff] [blame] | 582 | return 0; |
| 583 | } |
| 584 | |
| 585 | bool ShouldOnlyDumpProfile() { |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 586 | return dump_only_; |
Calin Juravle | 876f350 | 2016-03-24 16:16:34 +0000 | [diff] [blame] | 587 | } |
| 588 | |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 589 | bool GetClassNamesAndMethods(int fd, |
| 590 | std::vector<std::unique_ptr<const DexFile>>* dex_files, |
| 591 | std::set<std::string>* out_lines) { |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 592 | ProfileCompilationInfo profile_info; |
| 593 | if (!profile_info.Load(fd)) { |
| 594 | LOG(ERROR) << "Cannot load profile info"; |
| 595 | return false; |
| 596 | } |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 597 | for (const std::unique_ptr<const DexFile>& dex_file : *dex_files) { |
| 598 | std::set<dex::TypeIndex> class_types; |
Mathieu Chartier | ea650f3 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 599 | std::set<uint16_t> hot_methods; |
| 600 | std::set<uint16_t> startup_methods; |
| 601 | std::set<uint16_t> post_startup_methods; |
| 602 | std::set<uint16_t> combined_methods; |
| 603 | if (profile_info.GetClassesAndMethods(*dex_file.get(), |
| 604 | &class_types, |
| 605 | &hot_methods, |
| 606 | &startup_methods, |
| 607 | &post_startup_methods)) { |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 608 | for (const dex::TypeIndex& type_index : class_types) { |
| 609 | const DexFile::TypeId& type_id = dex_file->GetTypeId(type_index); |
| 610 | out_lines->insert(std::string(dex_file->GetTypeDescriptor(type_id))); |
| 611 | } |
Mathieu Chartier | ea650f3 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 612 | combined_methods = hot_methods; |
| 613 | combined_methods.insert(startup_methods.begin(), startup_methods.end()); |
| 614 | combined_methods.insert(post_startup_methods.begin(), post_startup_methods.end()); |
| 615 | for (uint16_t dex_method_idx : combined_methods) { |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 616 | const DexFile::MethodId& id = dex_file->GetMethodId(dex_method_idx); |
| 617 | std::string signature_string(dex_file->GetMethodSignature(id).ToString()); |
| 618 | std::string type_string(dex_file->GetTypeDescriptor(dex_file->GetTypeId(id.class_idx_))); |
| 619 | std::string method_name(dex_file->GetMethodName(id)); |
Mathieu Chartier | ea650f3 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 620 | std::string flags_string; |
| 621 | if (hot_methods.find(dex_method_idx) != hot_methods.end()) { |
| 622 | flags_string += kMethodFlagStringHot; |
| 623 | } |
| 624 | if (startup_methods.find(dex_method_idx) != startup_methods.end()) { |
| 625 | flags_string += kMethodFlagStringStartup; |
| 626 | } |
| 627 | if (post_startup_methods.find(dex_method_idx) != post_startup_methods.end()) { |
| 628 | flags_string += kMethodFlagStringPostStartup; |
| 629 | } |
| 630 | out_lines->insert(flags_string + |
| 631 | type_string + |
| 632 | kMethodSep + |
| 633 | method_name + |
| 634 | signature_string); |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 635 | } |
| 636 | } |
| 637 | } |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 638 | return true; |
| 639 | } |
| 640 | |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 641 | bool GetClassNamesAndMethods(const std::string& profile_file, |
| 642 | std::vector<std::unique_ptr<const DexFile>>* dex_files, |
| 643 | std::set<std::string>* out_lines) { |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 644 | int fd = open(profile_file.c_str(), O_RDONLY); |
| 645 | if (!FdIsValid(fd)) { |
| 646 | LOG(ERROR) << "Cannot open " << profile_file << strerror(errno); |
| 647 | return false; |
| 648 | } |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 649 | if (!GetClassNamesAndMethods(fd, dex_files, out_lines)) { |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 650 | return false; |
| 651 | } |
| 652 | if (close(fd) < 0) { |
| 653 | PLOG(WARNING) << "Failed to close descriptor"; |
| 654 | } |
| 655 | return true; |
| 656 | } |
| 657 | |
Mathieu Chartier | ea650f3 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 658 | int DumpClassesAndMethods() { |
David Sehr | 153da0e | 2017-02-15 08:54:51 -0800 | [diff] [blame] | 659 | // Validate that at least one profile file or reference was specified. |
| 660 | if (profile_files_.empty() && profile_files_fd_.empty() && |
| 661 | reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { |
| 662 | Usage("No profile files or reference profile specified."); |
| 663 | } |
Calin Juravle | e10c1e2 | 2018-01-26 20:10:15 -0800 | [diff] [blame] | 664 | |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 665 | // Open the dex files to get the names for classes. |
| 666 | std::vector<std::unique_ptr<const DexFile>> dex_files; |
| 667 | OpenApkFilesFromLocations(&dex_files); |
| 668 | // Build a vector of class names from individual profile files. |
| 669 | std::set<std::string> class_names; |
| 670 | if (!profile_files_fd_.empty()) { |
| 671 | for (int profile_file_fd : profile_files_fd_) { |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 672 | if (!GetClassNamesAndMethods(profile_file_fd, &dex_files, &class_names)) { |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 673 | return -1; |
| 674 | } |
| 675 | } |
| 676 | } |
| 677 | if (!profile_files_.empty()) { |
| 678 | for (const std::string& profile_file : profile_files_) { |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 679 | if (!GetClassNamesAndMethods(profile_file, &dex_files, &class_names)) { |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 680 | return -1; |
| 681 | } |
| 682 | } |
| 683 | } |
| 684 | // Concatenate class names from reference profile file. |
| 685 | if (FdIsValid(reference_profile_file_fd_)) { |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 686 | if (!GetClassNamesAndMethods(reference_profile_file_fd_, &dex_files, &class_names)) { |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 687 | return -1; |
| 688 | } |
| 689 | } |
| 690 | if (!reference_profile_file_.empty()) { |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 691 | if (!GetClassNamesAndMethods(reference_profile_file_, &dex_files, &class_names)) { |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 692 | return -1; |
| 693 | } |
| 694 | } |
| 695 | // Dump the class names. |
| 696 | std::string dump; |
| 697 | for (const std::string& class_name : class_names) { |
| 698 | dump += class_name + std::string("\n"); |
| 699 | } |
| 700 | if (!FdIsValid(dump_output_to_fd_)) { |
| 701 | std::cout << dump; |
| 702 | } else { |
Andreas Gampe | 9b031f7 | 2018-10-04 11:03:34 -0700 | [diff] [blame] | 703 | unix_file::FdFile out_fd(dump_output_to_fd_, /*check_usage=*/ false); |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 704 | if (!out_fd.WriteFully(dump.c_str(), dump.length())) { |
| 705 | return -1; |
| 706 | } |
| 707 | } |
| 708 | return 0; |
| 709 | } |
| 710 | |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 711 | bool ShouldOnlyDumpClassesAndMethods() { |
| 712 | return dump_classes_and_methods_; |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 713 | } |
| 714 | |
| 715 | // Read lines from the given file, dropping comments and empty lines. Post-process each line with |
| 716 | // the given function. |
| 717 | template <typename T> |
| 718 | static T* ReadCommentedInputFromFile( |
| 719 | const char* input_filename, std::function<std::string(const char*)>* process) { |
| 720 | std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in)); |
| 721 | if (input_file.get() == nullptr) { |
| 722 | LOG(ERROR) << "Failed to open input file " << input_filename; |
| 723 | return nullptr; |
| 724 | } |
| 725 | std::unique_ptr<T> result( |
| 726 | ReadCommentedInputStream<T>(*input_file, process)); |
| 727 | input_file->close(); |
| 728 | return result.release(); |
| 729 | } |
| 730 | |
| 731 | // Read lines from the given stream, dropping comments and empty lines. Post-process each line |
| 732 | // with the given function. |
| 733 | template <typename T> |
| 734 | static T* ReadCommentedInputStream( |
| 735 | std::istream& in_stream, |
| 736 | std::function<std::string(const char*)>* process) { |
| 737 | std::unique_ptr<T> output(new T()); |
| 738 | while (in_stream.good()) { |
| 739 | std::string dot; |
| 740 | std::getline(in_stream, dot); |
| 741 | if (android::base::StartsWith(dot, "#") || dot.empty()) { |
| 742 | continue; |
| 743 | } |
| 744 | if (process != nullptr) { |
| 745 | std::string descriptor((*process)(dot.c_str())); |
| 746 | output->insert(output->end(), descriptor); |
| 747 | } else { |
| 748 | output->insert(output->end(), dot); |
| 749 | } |
| 750 | } |
| 751 | return output.release(); |
| 752 | } |
| 753 | |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 754 | // Find class klass_descriptor in the given dex_files and store its reference |
| 755 | // in the out parameter class_ref. |
| 756 | // Return true if the definition of the class was found in any of the dex_files. |
| 757 | bool FindClass(const std::vector<std::unique_ptr<const DexFile>>& dex_files, |
| 758 | const std::string& klass_descriptor, |
Mathieu Chartier | dbddc22 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 759 | /*out*/TypeReference* class_ref) { |
Calin Juravle | 0855688 | 2017-05-26 16:40:45 -0700 | [diff] [blame] | 760 | constexpr uint16_t kInvalidTypeIndex = std::numeric_limits<uint16_t>::max() - 1; |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 761 | for (const std::unique_ptr<const DexFile>& dex_file_ptr : dex_files) { |
| 762 | const DexFile* dex_file = dex_file_ptr.get(); |
Calin Juravle | 0855688 | 2017-05-26 16:40:45 -0700 | [diff] [blame] | 763 | if (klass_descriptor == kInvalidClassDescriptor) { |
| 764 | if (kInvalidTypeIndex >= dex_file->NumTypeIds()) { |
| 765 | // The dex file does not contain all possible type ids which leaves us room |
| 766 | // to add an "invalid" type id. |
Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 767 | *class_ref = TypeReference(dex_file, dex::TypeIndex(kInvalidTypeIndex)); |
Calin Juravle | 0855688 | 2017-05-26 16:40:45 -0700 | [diff] [blame] | 768 | return true; |
| 769 | } else { |
| 770 | // The dex file contains all possible type ids. We don't have any free type id |
| 771 | // that we can use as invalid. |
| 772 | continue; |
| 773 | } |
| 774 | } |
| 775 | |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 776 | const DexFile::TypeId* type_id = dex_file->FindTypeId(klass_descriptor.c_str()); |
| 777 | if (type_id == nullptr) { |
| 778 | continue; |
| 779 | } |
| 780 | dex::TypeIndex type_index = dex_file->GetIndexForTypeId(*type_id); |
| 781 | if (dex_file->FindClassDef(type_index) == nullptr) { |
| 782 | // Class is only referenced in the current dex file but not defined in it. |
| 783 | continue; |
| 784 | } |
Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 785 | *class_ref = TypeReference(dex_file, type_index); |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 786 | return true; |
| 787 | } |
| 788 | return false; |
| 789 | } |
| 790 | |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 791 | // Find the method specified by method_spec in the class class_ref. |
Calin Juravle | 0855688 | 2017-05-26 16:40:45 -0700 | [diff] [blame] | 792 | uint32_t FindMethodIndex(const TypeReference& class_ref, |
| 793 | const std::string& method_spec) { |
| 794 | const DexFile* dex_file = class_ref.dex_file; |
| 795 | if (method_spec == kInvalidMethod) { |
| 796 | constexpr uint16_t kInvalidMethodIndex = std::numeric_limits<uint16_t>::max() - 1; |
| 797 | return kInvalidMethodIndex >= dex_file->NumMethodIds() |
| 798 | ? kInvalidMethodIndex |
Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 799 | : dex::kDexNoIndex; |
Calin Juravle | 0855688 | 2017-05-26 16:40:45 -0700 | [diff] [blame] | 800 | } |
| 801 | |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 802 | std::vector<std::string> name_and_signature; |
| 803 | Split(method_spec, kProfileParsingFirstCharInSignature, &name_and_signature); |
| 804 | if (name_and_signature.size() != 2) { |
| 805 | LOG(ERROR) << "Invalid method name and signature " << method_spec; |
Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 806 | return dex::kDexNoIndex; |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 807 | } |
Calin Juravle | 0855688 | 2017-05-26 16:40:45 -0700 | [diff] [blame] | 808 | |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 809 | const std::string& name = name_and_signature[0]; |
| 810 | const std::string& signature = kProfileParsingFirstCharInSignature + name_and_signature[1]; |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 811 | |
| 812 | const DexFile::StringId* name_id = dex_file->FindStringId(name.c_str()); |
| 813 | if (name_id == nullptr) { |
Mathieu Chartier | 66aae3b | 2017-05-18 10:38:28 -0700 | [diff] [blame] | 814 | LOG(WARNING) << "Could not find name: " << name; |
Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 815 | return dex::kDexNoIndex; |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 816 | } |
| 817 | dex::TypeIndex return_type_idx; |
| 818 | std::vector<dex::TypeIndex> param_type_idxs; |
| 819 | if (!dex_file->CreateTypeList(signature, &return_type_idx, ¶m_type_idxs)) { |
Mathieu Chartier | 66aae3b | 2017-05-18 10:38:28 -0700 | [diff] [blame] | 820 | LOG(WARNING) << "Could not create type list" << signature; |
Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 821 | return dex::kDexNoIndex; |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 822 | } |
| 823 | const DexFile::ProtoId* proto_id = dex_file->FindProtoId(return_type_idx, param_type_idxs); |
| 824 | if (proto_id == nullptr) { |
Mathieu Chartier | 66aae3b | 2017-05-18 10:38:28 -0700 | [diff] [blame] | 825 | LOG(WARNING) << "Could not find proto_id: " << name; |
Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 826 | return dex::kDexNoIndex; |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 827 | } |
| 828 | const DexFile::MethodId* method_id = dex_file->FindMethodId( |
Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 829 | dex_file->GetTypeId(class_ref.TypeIndex()), *name_id, *proto_id); |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 830 | if (method_id == nullptr) { |
Mathieu Chartier | 66aae3b | 2017-05-18 10:38:28 -0700 | [diff] [blame] | 831 | LOG(WARNING) << "Could not find method_id: " << name; |
Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 832 | return dex::kDexNoIndex; |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 833 | } |
| 834 | |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 835 | return dex_file->GetIndexForMethodId(*method_id); |
| 836 | } |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 837 | |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 838 | // Given a method, return true if the method has a single INVOKE_VIRTUAL in its byte code. |
| 839 | // Upon success it returns true and stores the method index and the invoke dex pc |
| 840 | // in the output parameters. |
| 841 | // The format of the method spec is "inlinePolymorphic(LSuper;)I+LSubA;,LSubB;,LSubC;". |
| 842 | // |
| 843 | // TODO(calin): support INVOKE_INTERFACE and the range variants. |
Mathieu Chartier | dbddc22 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 844 | bool HasSingleInvoke(const TypeReference& class_ref, |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 845 | uint16_t method_index, |
| 846 | /*out*/uint32_t* dex_pc) { |
| 847 | const DexFile* dex_file = class_ref.dex_file; |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 848 | uint32_t offset = dex_file->FindCodeItemOffset( |
Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 849 | *dex_file->FindClassDef(class_ref.TypeIndex()), |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 850 | method_index); |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 851 | const DexFile::CodeItem* code_item = dex_file->GetCodeItem(offset); |
| 852 | |
| 853 | bool found_invoke = false; |
Mathieu Chartier | 698ebbc | 2018-01-05 11:00:42 -0800 | [diff] [blame] | 854 | for (const DexInstructionPcPair& inst : CodeItemInstructionAccessor(*dex_file, code_item)) { |
Rico Wind | c24fa5d | 2018-04-25 12:44:58 +0200 | [diff] [blame] | 855 | if (inst->Opcode() == Instruction::INVOKE_VIRTUAL || |
| 856 | inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE) { |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 857 | if (found_invoke) { |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 858 | LOG(ERROR) << "Multiple invoke INVOKE_VIRTUAL found: " |
| 859 | << dex_file->PrettyMethod(method_index); |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 860 | return false; |
| 861 | } |
| 862 | found_invoke = true; |
Mathieu Chartier | 0021feb | 2017-11-07 00:08:52 -0800 | [diff] [blame] | 863 | *dex_pc = inst.DexPc(); |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 864 | } |
| 865 | } |
| 866 | if (!found_invoke) { |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 867 | LOG(ERROR) << "Could not find any INVOKE_VIRTUAL: " << dex_file->PrettyMethod(method_index); |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 868 | } |
| 869 | return found_invoke; |
| 870 | } |
| 871 | |
| 872 | // Process a line defining a class or a method and its inline caches. |
| 873 | // Upon success return true and add the class or the method info to profile. |
Calin Juravle | 589e71e | 2017-03-03 16:05:05 -0800 | [diff] [blame] | 874 | // The possible line formats are: |
| 875 | // "LJustTheCass;". |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 876 | // "LTestInline;->inlinePolymorphic(LSuper;)I+LSubA;,LSubB;,LSubC;". |
Calin Juravle | 0855688 | 2017-05-26 16:40:45 -0700 | [diff] [blame] | 877 | // "LTestInline;->inlinePolymorphic(LSuper;)I+LSubA;,LSubB;,invalid_class". |
Calin Juravle | 589e71e | 2017-03-03 16:05:05 -0800 | [diff] [blame] | 878 | // "LTestInline;->inlineMissingTypes(LSuper;)I+missing_types". |
| 879 | // "LTestInline;->inlineNoInlineCaches(LSuper;)I". |
Mathieu Chartier | d808e8b | 2017-03-21 13:37:41 -0700 | [diff] [blame] | 880 | // "LTestInline;->*". |
Calin Juravle | 0855688 | 2017-05-26 16:40:45 -0700 | [diff] [blame] | 881 | // "invalid_class". |
| 882 | // "LTestInline;->invalid_method". |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 883 | // The method and classes are searched only in the given dex files. |
| 884 | bool ProcessLine(const std::vector<std::unique_ptr<const DexFile>>& dex_files, |
| 885 | const std::string& line, |
| 886 | /*out*/ProfileCompilationInfo* profile) { |
| 887 | std::string klass; |
| 888 | std::string method_str; |
Mathieu Chartier | ea650f3 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 889 | bool is_hot = false; |
| 890 | bool is_startup = false; |
| 891 | bool is_post_startup = false; |
| 892 | const size_t method_sep_index = line.find(kMethodSep, 0); |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 893 | if (method_sep_index == std::string::npos) { |
Mathieu Chartier | ea650f3 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 894 | klass = line.substr(0); |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 895 | } else { |
Mathieu Chartier | ea650f3 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 896 | // The method prefix flags are only valid for method strings. |
| 897 | size_t start_index = 0; |
| 898 | while (start_index < line.size() && line[start_index] != 'L') { |
| 899 | const char c = line[start_index]; |
| 900 | if (c == kMethodFlagStringHot) { |
| 901 | is_hot = true; |
| 902 | } else if (c == kMethodFlagStringStartup) { |
| 903 | is_startup = true; |
| 904 | } else if (c == kMethodFlagStringPostStartup) { |
| 905 | is_post_startup = true; |
| 906 | } else { |
| 907 | LOG(WARNING) << "Invalid flag " << c; |
| 908 | return false; |
| 909 | } |
| 910 | ++start_index; |
| 911 | } |
| 912 | klass = line.substr(start_index, method_sep_index - start_index); |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 913 | method_str = line.substr(method_sep_index + kMethodSep.size()); |
| 914 | } |
| 915 | |
Calin Juravle | ee9cb41 | 2018-02-13 20:32:35 -0800 | [diff] [blame] | 916 | uint32_t flags = 0; |
| 917 | if (is_hot) { |
| 918 | flags |= ProfileCompilationInfo::MethodHotness::kFlagHot; |
| 919 | } |
| 920 | if (is_startup) { |
| 921 | flags |= ProfileCompilationInfo::MethodHotness::kFlagStartup; |
| 922 | } |
| 923 | if (is_post_startup) { |
| 924 | flags |= ProfileCompilationInfo::MethodHotness::kFlagPostStartup; |
| 925 | } |
| 926 | |
Andreas Gampe | 9b031f7 | 2018-10-04 11:03:34 -0700 | [diff] [blame] | 927 | TypeReference class_ref(/* dex_file= */ nullptr, dex::TypeIndex()); |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 928 | if (!FindClass(dex_files, klass, &class_ref)) { |
Mathieu Chartier | 3f12134 | 2017-03-06 11:16:20 -0800 | [diff] [blame] | 929 | LOG(WARNING) << "Could not find class: " << klass; |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 930 | return false; |
| 931 | } |
| 932 | |
Mathieu Chartier | d808e8b | 2017-03-21 13:37:41 -0700 | [diff] [blame] | 933 | if (method_str.empty() || method_str == kClassAllMethods) { |
| 934 | // Start by adding the class. |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 935 | std::set<DexCacheResolvedClasses> resolved_class_set; |
| 936 | const DexFile* dex_file = class_ref.dex_file; |
| 937 | const auto& dex_resolved_classes = resolved_class_set.emplace( |
| 938 | dex_file->GetLocation(), |
Mathieu Chartier | 79c87da | 2017-10-10 11:54:29 -0700 | [diff] [blame] | 939 | DexFileLoader::GetBaseLocation(dex_file->GetLocation()), |
Mathieu Chartier | ea650f3 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 940 | dex_file->GetLocationChecksum(), |
| 941 | dex_file->NumMethodIds()); |
Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 942 | dex_resolved_classes.first->AddClass(class_ref.TypeIndex()); |
Mathieu Chartier | d808e8b | 2017-03-21 13:37:41 -0700 | [diff] [blame] | 943 | std::vector<ProfileMethodInfo> methods; |
| 944 | if (method_str == kClassAllMethods) { |
Mathieu Chartier | 18e2687 | 2018-06-04 17:19:02 -0700 | [diff] [blame] | 945 | ClassAccessor accessor( |
| 946 | *dex_file, |
| 947 | dex_file->GetIndexForClassDef(*dex_file->FindClassDef(class_ref.TypeIndex()))); |
Mathieu Chartier | 0d896bd | 2018-05-25 00:20:27 -0700 | [diff] [blame] | 948 | for (const ClassAccessor::Method& method : accessor.GetMethods()) { |
Mathieu Chartier | 20f4992 | 2018-05-24 16:04:17 -0700 | [diff] [blame] | 949 | if (method.GetCodeItemOffset() != 0) { |
| 950 | // Add all of the methods that have code to the profile. |
| 951 | methods.push_back(ProfileMethodInfo(method.GetReference())); |
Mathieu Chartier | d808e8b | 2017-03-21 13:37:41 -0700 | [diff] [blame] | 952 | } |
Mathieu Chartier | 0d896bd | 2018-05-25 00:20:27 -0700 | [diff] [blame] | 953 | } |
Mathieu Chartier | d808e8b | 2017-03-21 13:37:41 -0700 | [diff] [blame] | 954 | } |
Mathieu Chartier | bbe3a5e | 2017-06-13 16:36:17 -0700 | [diff] [blame] | 955 | // TODO: Check return values? |
Calin Juravle | ee9cb41 | 2018-02-13 20:32:35 -0800 | [diff] [blame] | 956 | profile->AddMethods(methods, static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags)); |
Mathieu Chartier | bbe3a5e | 2017-06-13 16:36:17 -0700 | [diff] [blame] | 957 | profile->AddClasses(resolved_class_set); |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 958 | return true; |
| 959 | } |
| 960 | |
| 961 | // Process the method. |
| 962 | std::string method_spec; |
| 963 | std::vector<std::string> inline_cache_elems; |
| 964 | |
Mathieu Chartier | ea650f3 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 965 | // If none of the flags are set, default to hot. |
| 966 | is_hot = is_hot || (!is_hot && !is_startup && !is_post_startup); |
| 967 | |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 968 | std::vector<std::string> method_elems; |
Calin Juravle | 589e71e | 2017-03-03 16:05:05 -0800 | [diff] [blame] | 969 | bool is_missing_types = false; |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 970 | Split(method_str, kProfileParsingInlineChacheSep, &method_elems); |
| 971 | if (method_elems.size() == 2) { |
| 972 | method_spec = method_elems[0]; |
Calin Juravle | 589e71e | 2017-03-03 16:05:05 -0800 | [diff] [blame] | 973 | is_missing_types = method_elems[1] == kMissingTypesMarker; |
| 974 | if (!is_missing_types) { |
| 975 | Split(method_elems[1], kProfileParsingTypeSep, &inline_cache_elems); |
| 976 | } |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 977 | } else if (method_elems.size() == 1) { |
| 978 | method_spec = method_elems[0]; |
| 979 | } else { |
| 980 | LOG(ERROR) << "Invalid method line: " << line; |
| 981 | return false; |
| 982 | } |
| 983 | |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 984 | const uint32_t method_index = FindMethodIndex(class_ref, method_spec); |
Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 985 | if (method_index == dex::kDexNoIndex) { |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 986 | return false; |
| 987 | } |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 988 | |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 989 | std::vector<ProfileMethodInfo::ProfileInlineCache> inline_caches; |
| 990 | if (is_missing_types || !inline_cache_elems.empty()) { |
| 991 | uint32_t dex_pc; |
| 992 | if (!HasSingleInvoke(class_ref, method_index, &dex_pc)) { |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 993 | return false; |
| 994 | } |
Vladimir Marko | f3c52b4 | 2017-11-17 17:32:12 +0000 | [diff] [blame] | 995 | std::vector<TypeReference> classes(inline_cache_elems.size(), |
Andreas Gampe | 9b031f7 | 2018-10-04 11:03:34 -0700 | [diff] [blame] | 996 | TypeReference(/* dex_file= */ nullptr, dex::TypeIndex())); |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 997 | size_t class_it = 0; |
| 998 | for (const std::string& ic_class : inline_cache_elems) { |
| 999 | if (!FindClass(dex_files, ic_class, &(classes[class_it++]))) { |
| 1000 | LOG(ERROR) << "Could not find class: " << ic_class; |
| 1001 | return false; |
| 1002 | } |
| 1003 | } |
| 1004 | inline_caches.emplace_back(dex_pc, is_missing_types, classes); |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 1005 | } |
Mathieu Chartier | bbe3a5e | 2017-06-13 16:36:17 -0700 | [diff] [blame] | 1006 | MethodReference ref(class_ref.dex_file, method_index); |
Mathieu Chartier | ea650f3 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 1007 | if (is_hot) { |
Calin Juravle | ee9cb41 | 2018-02-13 20:32:35 -0800 | [diff] [blame] | 1008 | profile->AddMethod(ProfileMethodInfo(ref, inline_caches), |
| 1009 | static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags)); |
Mathieu Chartier | bbe3a5e | 2017-06-13 16:36:17 -0700 | [diff] [blame] | 1010 | } |
| 1011 | if (flags != 0) { |
Calin Juravle | ee9cb41 | 2018-02-13 20:32:35 -0800 | [diff] [blame] | 1012 | if (!profile->AddMethodIndex( |
| 1013 | static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags), ref)) { |
Mathieu Chartier | ea650f3 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 1014 | return false; |
| 1015 | } |
Mathieu Chartier | e46f3a8 | 2017-06-19 19:54:12 -0700 | [diff] [blame] | 1016 | DCHECK(profile->GetMethodHotness(ref).IsInProfile()); |
Mathieu Chartier | ea650f3 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 1017 | } |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 1018 | return true; |
| 1019 | } |
| 1020 | |
Mathieu Chartier | 2f79455 | 2017-06-19 10:58:08 -0700 | [diff] [blame] | 1021 | int OpenReferenceProfile() const { |
| 1022 | int fd = reference_profile_file_fd_; |
| 1023 | if (!FdIsValid(fd)) { |
| 1024 | CHECK(!reference_profile_file_.empty()); |
| 1025 | fd = open(reference_profile_file_.c_str(), O_CREAT | O_TRUNC | O_WRONLY, 0644); |
| 1026 | if (fd < 0) { |
| 1027 | LOG(ERROR) << "Cannot open " << reference_profile_file_ << strerror(errno); |
| 1028 | return kInvalidFd; |
| 1029 | } |
| 1030 | } |
| 1031 | return fd; |
| 1032 | } |
| 1033 | |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 1034 | // Creates a profile from a human friendly textual representation. |
| 1035 | // The expected input format is: |
| 1036 | // # Classes |
| 1037 | // Ljava/lang/Comparable; |
| 1038 | // Ljava/lang/Math; |
| 1039 | // # Methods with inline caches |
| 1040 | // LTestInline;->inlinePolymorphic(LSuper;)I+LSubA;,LSubB;,LSubC; |
| 1041 | // LTestInline;->noInlineCache(LSuper;)I |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 1042 | int CreateProfile() { |
David Sehr | 153da0e | 2017-02-15 08:54:51 -0800 | [diff] [blame] | 1043 | // Validate parameters for this command. |
| 1044 | if (apk_files_.empty() && apks_fd_.empty()) { |
| 1045 | Usage("APK files must be specified"); |
| 1046 | } |
| 1047 | if (dex_locations_.empty()) { |
| 1048 | Usage("DEX locations must be specified"); |
| 1049 | } |
| 1050 | if (reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { |
| 1051 | Usage("Reference profile must be specified with --reference-profile-file or " |
| 1052 | "--reference-profile-file-fd"); |
| 1053 | } |
| 1054 | if (!profile_files_.empty() || !profile_files_fd_.empty()) { |
| 1055 | Usage("Profile must be specified with --reference-profile-file or " |
| 1056 | "--reference-profile-file-fd"); |
| 1057 | } |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 1058 | // Open the profile output file if needed. |
Mathieu Chartier | 2f79455 | 2017-06-19 10:58:08 -0700 | [diff] [blame] | 1059 | int fd = OpenReferenceProfile(); |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 1060 | if (!FdIsValid(fd)) { |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 1061 | return -1; |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 1062 | } |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 1063 | // Read the user-specified list of classes and methods. |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 1064 | std::unique_ptr<std::unordered_set<std::string>> |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 1065 | user_lines(ReadCommentedInputFromFile<std::unordered_set<std::string>>( |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 1066 | create_profile_from_file_.c_str(), nullptr)); // No post-processing. |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 1067 | |
| 1068 | // Open the dex files to look up classes and methods. |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 1069 | std::vector<std::unique_ptr<const DexFile>> dex_files; |
| 1070 | OpenApkFilesFromLocations(&dex_files); |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 1071 | |
| 1072 | // Process the lines one by one and add the successful ones to the profile. |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 1073 | ProfileCompilationInfo info; |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 1074 | |
| 1075 | for (const auto& line : *user_lines) { |
| 1076 | ProcessLine(dex_files, line, &info); |
| 1077 | } |
| 1078 | |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 1079 | // Write the profile file. |
| 1080 | CHECK(info.Save(fd)); |
| 1081 | if (close(fd) < 0) { |
| 1082 | PLOG(WARNING) << "Failed to close descriptor"; |
| 1083 | } |
| 1084 | return 0; |
| 1085 | } |
| 1086 | |
Mathieu Chartier | 2f79455 | 2017-06-19 10:58:08 -0700 | [diff] [blame] | 1087 | bool ShouldCreateBootProfile() const { |
| 1088 | return generate_boot_image_profile_; |
| 1089 | } |
| 1090 | |
| 1091 | int CreateBootProfile() { |
Mathieu Chartier | 2f79455 | 2017-06-19 10:58:08 -0700 | [diff] [blame] | 1092 | // Open the profile output file. |
| 1093 | const int reference_fd = OpenReferenceProfile(); |
| 1094 | if (!FdIsValid(reference_fd)) { |
| 1095 | PLOG(ERROR) << "Error opening reference profile"; |
| 1096 | return -1; |
| 1097 | } |
| 1098 | // Open the dex files. |
| 1099 | std::vector<std::unique_ptr<const DexFile>> dex_files; |
| 1100 | OpenApkFilesFromLocations(&dex_files); |
| 1101 | if (dex_files.empty()) { |
| 1102 | PLOG(ERROR) << "Expected dex files for creating boot profile"; |
| 1103 | return -2; |
| 1104 | } |
| 1105 | // Open the input profiles. |
| 1106 | std::vector<std::unique_ptr<const ProfileCompilationInfo>> profiles; |
| 1107 | if (!profile_files_fd_.empty()) { |
| 1108 | for (int profile_file_fd : profile_files_fd_) { |
| 1109 | std::unique_ptr<const ProfileCompilationInfo> profile(LoadProfile("", profile_file_fd)); |
| 1110 | if (profile == nullptr) { |
| 1111 | return -3; |
| 1112 | } |
| 1113 | profiles.emplace_back(std::move(profile)); |
| 1114 | } |
| 1115 | } |
| 1116 | if (!profile_files_.empty()) { |
| 1117 | for (const std::string& profile_file : profile_files_) { |
| 1118 | std::unique_ptr<const ProfileCompilationInfo> profile(LoadProfile(profile_file, kInvalidFd)); |
| 1119 | if (profile == nullptr) { |
| 1120 | return -4; |
| 1121 | } |
| 1122 | profiles.emplace_back(std::move(profile)); |
| 1123 | } |
| 1124 | } |
| 1125 | ProfileCompilationInfo out_profile; |
| 1126 | GenerateBootImageProfile(dex_files, |
| 1127 | profiles, |
| 1128 | boot_image_options_, |
| 1129 | VLOG_IS_ON(profiler), |
| 1130 | &out_profile); |
| 1131 | out_profile.Save(reference_fd); |
| 1132 | close(reference_fd); |
| 1133 | return 0; |
| 1134 | } |
| 1135 | |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 1136 | bool ShouldCreateProfile() { |
| 1137 | return !create_profile_from_file_.empty(); |
| 1138 | } |
| 1139 | |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 1140 | int GenerateTestProfile() { |
David Sehr | 153da0e | 2017-02-15 08:54:51 -0800 | [diff] [blame] | 1141 | // Validate parameters for this command. |
Shubham Ajmera | d704f0b | 2017-07-26 16:33:35 -0700 | [diff] [blame] | 1142 | if (test_profile_method_percerntage_ > 100) { |
| 1143 | Usage("Invalid percentage for --generate-test-profile-method-percentage"); |
David Sehr | 153da0e | 2017-02-15 08:54:51 -0800 | [diff] [blame] | 1144 | } |
Shubham Ajmera | d704f0b | 2017-07-26 16:33:35 -0700 | [diff] [blame] | 1145 | if (test_profile_class_percentage_ > 100) { |
| 1146 | Usage("Invalid percentage for --generate-test-profile-class-percentage"); |
David Sehr | 153da0e | 2017-02-15 08:54:51 -0800 | [diff] [blame] | 1147 | } |
Jeff Hao | f0a31f8 | 2017-03-27 15:50:37 -0700 | [diff] [blame] | 1148 | // If given APK files or DEX locations, check that they're ok. |
| 1149 | if (!apk_files_.empty() || !apks_fd_.empty() || !dex_locations_.empty()) { |
| 1150 | if (apk_files_.empty() && apks_fd_.empty()) { |
| 1151 | Usage("APK files must be specified when passing DEX locations to --generate-test-profile"); |
| 1152 | } |
| 1153 | if (dex_locations_.empty()) { |
| 1154 | Usage("DEX locations must be specified when passing APK files to --generate-test-profile"); |
| 1155 | } |
| 1156 | } |
David Sehr | 153da0e | 2017-02-15 08:54:51 -0800 | [diff] [blame] | 1157 | // ShouldGenerateTestProfile confirms !test_profile_.empty(). |
George Burgess IV | 71f7726 | 2016-10-25 13:08:17 -0700 | [diff] [blame] | 1158 | int profile_test_fd = open(test_profile_.c_str(), O_CREAT | O_TRUNC | O_WRONLY, 0644); |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 1159 | if (profile_test_fd < 0) { |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 1160 | LOG(ERROR) << "Cannot open " << test_profile_ << strerror(errno); |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 1161 | return -1; |
| 1162 | } |
Jeff Hao | f0a31f8 | 2017-03-27 15:50:37 -0700 | [diff] [blame] | 1163 | bool result; |
| 1164 | if (apk_files_.empty() && apks_fd_.empty() && dex_locations_.empty()) { |
| 1165 | result = ProfileCompilationInfo::GenerateTestProfile(profile_test_fd, |
| 1166 | test_profile_num_dex_, |
Shubham Ajmera | d704f0b | 2017-07-26 16:33:35 -0700 | [diff] [blame] | 1167 | test_profile_method_percerntage_, |
| 1168 | test_profile_class_percentage_, |
Jeff Hao | f0a31f8 | 2017-03-27 15:50:37 -0700 | [diff] [blame] | 1169 | test_profile_seed_); |
| 1170 | } else { |
Jeff Hao | f0a31f8 | 2017-03-27 15:50:37 -0700 | [diff] [blame] | 1171 | // Open the dex files to look up classes and methods. |
| 1172 | std::vector<std::unique_ptr<const DexFile>> dex_files; |
| 1173 | OpenApkFilesFromLocations(&dex_files); |
| 1174 | // Create a random profile file based on the set of dex files. |
| 1175 | result = ProfileCompilationInfo::GenerateTestProfile(profile_test_fd, |
| 1176 | dex_files, |
Shubham Ajmera | d704f0b | 2017-07-26 16:33:35 -0700 | [diff] [blame] | 1177 | test_profile_method_percerntage_, |
| 1178 | test_profile_class_percentage_, |
Jeff Hao | f0a31f8 | 2017-03-27 15:50:37 -0700 | [diff] [blame] | 1179 | test_profile_seed_); |
| 1180 | } |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 1181 | close(profile_test_fd); // ignore close result. |
| 1182 | return result ? 0 : -1; |
| 1183 | } |
| 1184 | |
| 1185 | bool ShouldGenerateTestProfile() { |
| 1186 | return !test_profile_.empty(); |
| 1187 | } |
| 1188 | |
Calin Juravle | 2dba0ab | 2018-01-22 19:22:24 -0800 | [diff] [blame] | 1189 | bool ShouldCopyAndUpdateProfileKey() const { |
| 1190 | return copy_and_update_profile_key_; |
| 1191 | } |
| 1192 | |
Calin Juravle | 02c0879 | 2018-02-15 19:40:48 -0800 | [diff] [blame] | 1193 | int32_t CopyAndUpdateProfileKey() { |
Calin Juravle | 2dba0ab | 2018-01-22 19:22:24 -0800 | [diff] [blame] | 1194 | // Validate that at least one profile file was passed, as well as a reference profile. |
| 1195 | if (!(profile_files_.size() == 1 ^ profile_files_fd_.size() == 1)) { |
| 1196 | Usage("Only one profile file should be specified."); |
| 1197 | } |
| 1198 | if (reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { |
| 1199 | Usage("No reference profile file specified."); |
| 1200 | } |
| 1201 | |
| 1202 | if (apk_files_.empty() && apks_fd_.empty()) { |
| 1203 | Usage("No apk files specified"); |
| 1204 | } |
| 1205 | |
Calin Juravle | 02c0879 | 2018-02-15 19:40:48 -0800 | [diff] [blame] | 1206 | static constexpr int32_t kErrorFailedToUpdateProfile = -1; |
| 1207 | static constexpr int32_t kErrorFailedToSaveProfile = -2; |
| 1208 | static constexpr int32_t kErrorFailedToLoadProfile = -3; |
| 1209 | |
Calin Juravle | 2dba0ab | 2018-01-22 19:22:24 -0800 | [diff] [blame] | 1210 | bool use_fds = profile_files_fd_.size() == 1; |
| 1211 | |
| 1212 | ProfileCompilationInfo profile; |
| 1213 | // Do not clear if invalid. The input might be an archive. |
Calin Juravle | 02c0879 | 2018-02-15 19:40:48 -0800 | [diff] [blame] | 1214 | bool load_ok = use_fds |
| 1215 | ? profile.Load(profile_files_fd_[0]) |
Andreas Gampe | 9b031f7 | 2018-10-04 11:03:34 -0700 | [diff] [blame] | 1216 | : profile.Load(profile_files_[0], /*clear_if_invalid=*/ false); |
Calin Juravle | 02c0879 | 2018-02-15 19:40:48 -0800 | [diff] [blame] | 1217 | if (load_ok) { |
Calin Juravle | 2dba0ab | 2018-01-22 19:22:24 -0800 | [diff] [blame] | 1218 | // Open the dex files to look up classes and methods. |
| 1219 | std::vector<std::unique_ptr<const DexFile>> dex_files; |
| 1220 | OpenApkFilesFromLocations(&dex_files); |
| 1221 | if (!profile.UpdateProfileKeys(dex_files)) { |
Calin Juravle | 02c0879 | 2018-02-15 19:40:48 -0800 | [diff] [blame] | 1222 | return kErrorFailedToUpdateProfile; |
Calin Juravle | 2dba0ab | 2018-01-22 19:22:24 -0800 | [diff] [blame] | 1223 | } |
Calin Juravle | 02c0879 | 2018-02-15 19:40:48 -0800 | [diff] [blame] | 1224 | bool result = use_fds |
| 1225 | ? profile.Save(reference_profile_file_fd_) |
Andreas Gampe | 9b031f7 | 2018-10-04 11:03:34 -0700 | [diff] [blame] | 1226 | : profile.Save(reference_profile_file_, /*bytes_written=*/ nullptr); |
Calin Juravle | 02c0879 | 2018-02-15 19:40:48 -0800 | [diff] [blame] | 1227 | return result ? 0 : kErrorFailedToSaveProfile; |
Calin Juravle | 2dba0ab | 2018-01-22 19:22:24 -0800 | [diff] [blame] | 1228 | } else { |
Calin Juravle | 02c0879 | 2018-02-15 19:40:48 -0800 | [diff] [blame] | 1229 | return kErrorFailedToLoadProfile; |
Calin Juravle | 2dba0ab | 2018-01-22 19:22:24 -0800 | [diff] [blame] | 1230 | } |
| 1231 | } |
| 1232 | |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 1233 | private: |
| 1234 | static void ParseFdForCollection(const StringPiece& option, |
| 1235 | const char* arg_name, |
| 1236 | std::vector<int>* fds) { |
| 1237 | int fd; |
| 1238 | ParseUintOption(option, arg_name, &fd, Usage); |
| 1239 | fds->push_back(fd); |
| 1240 | } |
| 1241 | |
| 1242 | static void CloseAllFds(const std::vector<int>& fds, const char* descriptor) { |
| 1243 | for (size_t i = 0; i < fds.size(); i++) { |
| 1244 | if (close(fds[i]) < 0) { |
Calin Juravle | e10c1e2 | 2018-01-26 20:10:15 -0800 | [diff] [blame] | 1245 | PLOG(WARNING) << "Failed to close descriptor for " |
| 1246 | << descriptor << " at index " << i << ": " << fds[i]; |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 1247 | } |
| 1248 | } |
| 1249 | } |
| 1250 | |
| 1251 | void LogCompletionTime() { |
David Sehr | 52683cf | 2016-05-05 09:02:38 -0700 | [diff] [blame] | 1252 | static constexpr uint64_t kLogThresholdTime = MsToNs(100); // 100ms |
| 1253 | uint64_t time_taken = NanoTime() - start_ns_; |
David Sehr | ed79301 | 2016-05-05 13:39:43 -0700 | [diff] [blame] | 1254 | if (time_taken > kLogThresholdTime) { |
David Sehr | d855718 | 2016-05-06 12:29:35 -0700 | [diff] [blame] | 1255 | LOG(WARNING) << "profman took " << PrettyDuration(time_taken); |
David Sehr | ed79301 | 2016-05-05 13:39:43 -0700 | [diff] [blame] | 1256 | } |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 1257 | } |
| 1258 | |
| 1259 | std::vector<std::string> profile_files_; |
| 1260 | std::vector<int> profile_files_fd_; |
David Sehr | 546d24f | 2016-06-02 10:46:19 -0700 | [diff] [blame] | 1261 | std::vector<std::string> dex_locations_; |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 1262 | std::vector<std::string> apk_files_; |
David Sehr | 546d24f | 2016-06-02 10:46:19 -0700 | [diff] [blame] | 1263 | std::vector<int> apks_fd_; |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 1264 | std::string reference_profile_file_; |
| 1265 | int reference_profile_file_fd_; |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 1266 | bool dump_only_; |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 1267 | bool dump_classes_and_methods_; |
Mathieu Chartier | 2f79455 | 2017-06-19 10:58:08 -0700 | [diff] [blame] | 1268 | bool generate_boot_image_profile_; |
David Sehr | 4fcdd6d | 2016-05-24 14:52:31 -0700 | [diff] [blame] | 1269 | int dump_output_to_fd_; |
Mathieu Chartier | 2f79455 | 2017-06-19 10:58:08 -0700 | [diff] [blame] | 1270 | BootImageOptions boot_image_options_; |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 1271 | std::string test_profile_; |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 1272 | std::string create_profile_from_file_; |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 1273 | uint16_t test_profile_num_dex_; |
Shubham Ajmera | d704f0b | 2017-07-26 16:33:35 -0700 | [diff] [blame] | 1274 | uint16_t test_profile_method_percerntage_; |
| 1275 | uint16_t test_profile_class_percentage_; |
Jeff Hao | f0a31f8 | 2017-03-27 15:50:37 -0700 | [diff] [blame] | 1276 | uint32_t test_profile_seed_; |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 1277 | uint64_t start_ns_; |
Calin Juravle | 2dba0ab | 2018-01-22 19:22:24 -0800 | [diff] [blame] | 1278 | bool copy_and_update_profile_key_; |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 1279 | }; |
| 1280 | |
| 1281 | // See ProfileAssistant::ProcessingResult for return codes. |
| 1282 | static int profman(int argc, char** argv) { |
| 1283 | ProfMan profman; |
| 1284 | |
| 1285 | // Parse arguments. Argument mistakes will lead to exit(EXIT_FAILURE) in UsageError. |
| 1286 | profman.ParseArgs(argc, argv); |
| 1287 | |
Calin Juravle | e10c1e2 | 2018-01-26 20:10:15 -0800 | [diff] [blame] | 1288 | // Initialize MemMap for ZipArchive::OpenFromFd. |
| 1289 | MemMap::Init(); |
| 1290 | |
Calin Juravle | 7bcdb53 | 2016-06-07 16:14:47 +0100 | [diff] [blame] | 1291 | if (profman.ShouldGenerateTestProfile()) { |
| 1292 | return profman.GenerateTestProfile(); |
| 1293 | } |
Calin Juravle | 876f350 | 2016-03-24 16:16:34 +0000 | [diff] [blame] | 1294 | if (profman.ShouldOnlyDumpProfile()) { |
| 1295 | return profman.DumpProfileInfo(); |
| 1296 | } |
Mathieu Chartier | 3406726 | 2017-04-06 13:55:46 -0700 | [diff] [blame] | 1297 | if (profman.ShouldOnlyDumpClassesAndMethods()) { |
Mathieu Chartier | ea650f3 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 1298 | return profman.DumpClassesAndMethods(); |
David Sehr | 7c80f2d | 2017-02-07 16:47:58 -0800 | [diff] [blame] | 1299 | } |
| 1300 | if (profman.ShouldCreateProfile()) { |
| 1301 | return profman.CreateProfile(); |
| 1302 | } |
Mathieu Chartier | 2f79455 | 2017-06-19 10:58:08 -0700 | [diff] [blame] | 1303 | |
| 1304 | if (profman.ShouldCreateBootProfile()) { |
| 1305 | return profman.CreateBootProfile(); |
| 1306 | } |
Calin Juravle | 02c0879 | 2018-02-15 19:40:48 -0800 | [diff] [blame] | 1307 | |
| 1308 | if (profman.ShouldCopyAndUpdateProfileKey()) { |
| 1309 | return profman.CopyAndUpdateProfileKey(); |
| 1310 | } |
| 1311 | |
Calin Juravle | 2e2db78 | 2016-02-23 12:00:03 +0000 | [diff] [blame] | 1312 | // Process profile information and assess if we need to do a profile guided compilation. |
| 1313 | // This operation involves I/O. |
| 1314 | return profman.ProcessProfiles(); |
| 1315 | } |
| 1316 | |
| 1317 | } // namespace art |
| 1318 | |
| 1319 | int main(int argc, char **argv) { |
| 1320 | return art::profman(argc, argv); |
| 1321 | } |