Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 1 | //===- CodeCoverage.cpp - Coverage tool based on profiling instrumentation-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // The 'CodeCoverageTool' class implements a command line tool to analyze and |
| 11 | // report coverage information using the profiling instrumentation and code |
| 12 | // coverage mapping. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Max Moroz | 1ef3a77 | 2018-01-04 19:33:29 +0000 | [diff] [blame] | 16 | #include "CoverageExporterJson.h" |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 17 | #include "CoverageFilters.h" |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 18 | #include "CoverageReport.h" |
Vedant Kumar | 6e28bcd | 2017-02-05 20:10:58 +0000 | [diff] [blame] | 19 | #include "CoverageSummaryInfo.h" |
Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 20 | #include "CoverageViewOptions.h" |
Easwaran Raman | dc70712 | 2016-04-29 18:53:05 +0000 | [diff] [blame] | 21 | #include "RenderingSupport.h" |
Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 22 | #include "SourceCoverageView.h" |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/SmallString.h" |
Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/StringRef.h" |
Justin Bogner | 4379535 | 2015-03-11 02:30:51 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/Triple.h" |
Easwaran Raman | dc70712 | 2016-04-29 18:53:05 +0000 | [diff] [blame] | 26 | #include "llvm/ProfileData/Coverage/CoverageMapping.h" |
Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 27 | #include "llvm/ProfileData/InstrProfReader.h" |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 28 | #include "llvm/Support/CommandLine.h" |
| 29 | #include "llvm/Support/FileSystem.h" |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 30 | #include "llvm/Support/Format.h" |
Vedant Kumar | 424f51b | 2016-07-15 22:44:57 +0000 | [diff] [blame] | 31 | #include "llvm/Support/MemoryBuffer.h" |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 32 | #include "llvm/Support/Path.h" |
Justin Bogner | cfb53e4 | 2015-03-19 00:02:23 +0000 | [diff] [blame] | 33 | #include "llvm/Support/Process.h" |
Vedant Kumar | 424f51b | 2016-07-15 22:44:57 +0000 | [diff] [blame] | 34 | #include "llvm/Support/Program.h" |
Pavel Labath | 757ca88 | 2016-10-24 10:59:17 +0000 | [diff] [blame] | 35 | #include "llvm/Support/ScopedPrinter.h" |
Vedant Kumar | 86b2ac63 | 2016-07-13 21:38:36 +0000 | [diff] [blame] | 36 | #include "llvm/Support/ThreadPool.h" |
Max Moroz | cc254ba | 2018-01-05 16:15:07 +0000 | [diff] [blame] | 37 | #include "llvm/Support/Threading.h" |
Vedant Kumar | 424f51b | 2016-07-15 22:44:57 +0000 | [diff] [blame] | 38 | #include "llvm/Support/ToolOutputFile.h" |
Sean Eveson | fa8ef35 | 2017-09-28 10:07:30 +0000 | [diff] [blame] | 39 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 40 | #include <functional> |
Sean Eveson | fa8ef35 | 2017-09-28 10:07:30 +0000 | [diff] [blame] | 41 | #include <map> |
Justin Bogner | e53be06 | 2014-09-09 05:32:18 +0000 | [diff] [blame] | 42 | #include <system_error> |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 43 | |
| 44 | using namespace llvm; |
| 45 | using namespace coverage; |
| 46 | |
Vedant Kumar | 5c61c70 | 2016-10-25 00:08:33 +0000 | [diff] [blame] | 47 | void exportCoverageDataToJson(const coverage::CoverageMapping &CoverageMapping, |
Vedant Kumar | 72c3a11 | 2017-09-08 18:44:49 +0000 | [diff] [blame] | 48 | const CoverageViewOptions &Options, |
Vedant Kumar | 7101d73 | 2016-07-26 22:50:58 +0000 | [diff] [blame] | 49 | raw_ostream &OS); |
| 50 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 51 | namespace { |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 52 | /// The implementation of the coverage tool. |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 53 | class CodeCoverageTool { |
| 54 | public: |
| 55 | enum Command { |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 56 | /// The show command. |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 57 | Show, |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 58 | /// The report command. |
Vedant Kumar | 7101d73 | 2016-07-26 22:50:58 +0000 | [diff] [blame] | 59 | Report, |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 60 | /// The export command. |
Vedant Kumar | 7101d73 | 2016-07-26 22:50:58 +0000 | [diff] [blame] | 61 | Export |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 62 | }; |
| 63 | |
Vedant Kumar | 4610367 | 2016-09-22 21:49:47 +0000 | [diff] [blame] | 64 | int run(Command Cmd, int argc, const char **argv); |
| 65 | |
| 66 | private: |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 67 | /// Print the error message to the error output stream. |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 68 | void error(const Twine &Message, StringRef Whence = ""); |
| 69 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 70 | /// Print the warning message to the error output stream. |
Vedant Kumar | b302063 | 2016-07-18 17:53:12 +0000 | [diff] [blame] | 71 | void warning(const Twine &Message, StringRef Whence = ""); |
Vedant Kumar | 86b2ac63 | 2016-07-13 21:38:36 +0000 | [diff] [blame] | 72 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 73 | /// Convert \p Path into an absolute path and append it to the list |
Vedant Kumar | bc64798 | 2016-09-23 18:57:32 +0000 | [diff] [blame] | 74 | /// of collected paths. |
Vedant Kumar | cef440f | 2016-06-28 16:12:18 +0000 | [diff] [blame] | 75 | void addCollectedPath(const std::string &Path); |
| 76 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 77 | /// If \p Path is a regular file, collect the path. If it's a |
Vedant Kumar | 1ce90d8 | 2016-09-22 21:49:43 +0000 | [diff] [blame] | 78 | /// directory, recursively collect all of the paths within the directory. |
| 79 | void collectPaths(const std::string &Path); |
| 80 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 81 | /// Return a memory buffer for the given source file. |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 82 | ErrorOr<const MemoryBuffer &> getSourceFile(StringRef SourceFile); |
| 83 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 84 | /// Create source views for the expansions of the view. |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 85 | void attachExpansionSubViews(SourceCoverageView &View, |
| 86 | ArrayRef<ExpansionRecord> Expansions, |
Vedant Kumar | f681e2e | 2016-07-15 01:19:33 +0000 | [diff] [blame] | 87 | const CoverageMapping &Coverage); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 88 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 89 | /// Create the source view of a particular function. |
Justin Bogner | 5a6edad | 2014-09-19 19:07:17 +0000 | [diff] [blame] | 90 | std::unique_ptr<SourceCoverageView> |
Vedant Kumar | f681e2e | 2016-07-15 01:19:33 +0000 | [diff] [blame] | 91 | createFunctionView(const FunctionRecord &Function, |
| 92 | const CoverageMapping &Coverage); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 93 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 94 | /// Create the main source view of a particular source file. |
Justin Bogner | 5a6edad | 2014-09-19 19:07:17 +0000 | [diff] [blame] | 95 | std::unique_ptr<SourceCoverageView> |
Vedant Kumar | f681e2e | 2016-07-15 01:19:33 +0000 | [diff] [blame] | 96 | createSourceFileView(StringRef SourceFile, const CoverageMapping &Coverage); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 97 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 98 | /// Load the coverage mapping data. Return nullptr if an error occurred. |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 99 | std::unique_ptr<CoverageMapping> load(); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 100 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 101 | /// Create a mapping from files in the Coverage data to local copies |
Sean Eveson | 9edfeac | 2017-08-14 10:20:12 +0000 | [diff] [blame] | 102 | /// (path-equivalence). |
| 103 | void remapPathNames(const CoverageMapping &Coverage); |
| 104 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 105 | /// Remove input source files which aren't mapped by \p Coverage. |
Vedant Kumar | cab52ad | 2016-09-23 20:13:41 +0000 | [diff] [blame] | 106 | void removeUnmappedInputs(const CoverageMapping &Coverage); |
| 107 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 108 | /// If a demangler is available, demangle all symbol names. |
Vedant Kumar | 424f51b | 2016-07-15 22:44:57 +0000 | [diff] [blame] | 109 | void demangleSymbols(const CoverageMapping &Coverage); |
| 110 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 111 | /// Write out a source file view to the filesystem. |
Vedant Kumar | 6fd94bf | 2016-10-19 17:55:44 +0000 | [diff] [blame] | 112 | void writeSourceFileView(StringRef SourceFile, CoverageMapping *Coverage, |
| 113 | CoveragePrinter *Printer, bool ShowFilenames); |
| 114 | |
Benjamin Kramer | c321e53 | 2016-06-08 19:09:22 +0000 | [diff] [blame] | 115 | typedef llvm::function_ref<int(int, const char **)> CommandLineParserType; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 116 | |
Max Moroz | 1ef3a77 | 2018-01-04 19:33:29 +0000 | [diff] [blame] | 117 | int doShow(int argc, const char **argv, |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 118 | CommandLineParserType commandLineParser); |
| 119 | |
Max Moroz | 1ef3a77 | 2018-01-04 19:33:29 +0000 | [diff] [blame] | 120 | int doReport(int argc, const char **argv, |
| 121 | CommandLineParserType commandLineParser); |
| 122 | |
| 123 | int doExport(int argc, const char **argv, |
| 124 | CommandLineParserType commandLineParser); |
Vedant Kumar | 7101d73 | 2016-07-26 22:50:58 +0000 | [diff] [blame] | 125 | |
Vedant Kumar | a3661ef | 2016-10-25 17:40:55 +0000 | [diff] [blame] | 126 | std::vector<StringRef> ObjectFilenames; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 127 | CoverageViewOptions ViewOpts; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 128 | CoverageFiltersMatchAll Filters; |
Max Moroz | 4220f89 | 2018-04-09 15:20:35 +0000 | [diff] [blame] | 129 | CoverageFilters IgnoreFilenameFilters; |
Vedant Kumar | 4610367 | 2016-09-22 21:49:47 +0000 | [diff] [blame] | 130 | |
| 131 | /// The path to the indexed profile. |
| 132 | std::string PGOFilename; |
| 133 | |
| 134 | /// A list of input source files. |
Vedant Kumar | bc64798 | 2016-09-23 18:57:32 +0000 | [diff] [blame] | 135 | std::vector<std::string> SourceFiles; |
Vedant Kumar | 4610367 | 2016-09-22 21:49:47 +0000 | [diff] [blame] | 136 | |
Sean Eveson | 9edfeac | 2017-08-14 10:20:12 +0000 | [diff] [blame] | 137 | /// In -path-equivalence mode, this maps the absolute paths from the coverage |
| 138 | /// mapping data to the input source files. |
Justin Bogner | 116c166 | 2014-09-19 08:13:12 +0000 | [diff] [blame] | 139 | StringMap<std::string> RemappedFilenames; |
Vedant Kumar | 4610367 | 2016-09-22 21:49:47 +0000 | [diff] [blame] | 140 | |
Sean Eveson | 9edfeac | 2017-08-14 10:20:12 +0000 | [diff] [blame] | 141 | /// The coverage data path to be remapped from, and the source path to be |
| 142 | /// remapped to, when using -path-equivalence. |
| 143 | Optional<std::pair<std::string, std::string>> PathRemapping; |
| 144 | |
Vedant Kumar | 4610367 | 2016-09-22 21:49:47 +0000 | [diff] [blame] | 145 | /// The architecture the coverage mapping data targets. |
Vedant Kumar | 4b102c3 | 2017-08-01 21:23:26 +0000 | [diff] [blame] | 146 | std::vector<StringRef> CoverageArches; |
Vedant Kumar | cef440f | 2016-06-28 16:12:18 +0000 | [diff] [blame] | 147 | |
Vedant Kumar | 6e28bcd | 2017-02-05 20:10:58 +0000 | [diff] [blame] | 148 | /// A cache for demangled symbols. |
| 149 | DemangleCache DC; |
Vedant Kumar | 424f51b | 2016-07-15 22:44:57 +0000 | [diff] [blame] | 150 | |
Vedant Kumar | b6bfd47 | 2017-02-05 20:10:55 +0000 | [diff] [blame] | 151 | /// A lock which guards printing to stderr. |
Vedant Kumar | b302063 | 2016-07-18 17:53:12 +0000 | [diff] [blame] | 152 | std::mutex ErrsLock; |
Vedant Kumar | 86b2ac63 | 2016-07-13 21:38:36 +0000 | [diff] [blame] | 153 | |
Vedant Kumar | 6ab6b36 | 2016-07-15 22:44:54 +0000 | [diff] [blame] | 154 | /// A container for input source file buffers. |
Vedant Kumar | 86b2ac63 | 2016-07-13 21:38:36 +0000 | [diff] [blame] | 155 | std::mutex LoadedSourceFilesLock; |
| 156 | std::vector<std::pair<std::string, std::unique_ptr<MemoryBuffer>>> |
| 157 | LoadedSourceFiles; |
Sean Eveson | e15300e | 2017-08-31 09:11:31 +0000 | [diff] [blame] | 158 | |
| 159 | /// Whitelist from -name-whitelist to be used for filtering. |
| 160 | std::unique_ptr<SpecialCaseList> NameWhitelist; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 161 | }; |
| 162 | } |
| 163 | |
Vedant Kumar | 86b2ac63 | 2016-07-13 21:38:36 +0000 | [diff] [blame] | 164 | static std::string getErrorString(const Twine &Message, StringRef Whence, |
| 165 | bool Warning) { |
| 166 | std::string Str = (Warning ? "warning" : "error"); |
| 167 | Str += ": "; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 168 | if (!Whence.empty()) |
Vedant Kumar | b95dc46 | 2016-07-15 01:53:39 +0000 | [diff] [blame] | 169 | Str += Whence.str() + ": "; |
Vedant Kumar | 86b2ac63 | 2016-07-13 21:38:36 +0000 | [diff] [blame] | 170 | Str += Message.str() + "\n"; |
| 171 | return Str; |
| 172 | } |
| 173 | |
| 174 | void CodeCoverageTool::error(const Twine &Message, StringRef Whence) { |
Vedant Kumar | b302063 | 2016-07-18 17:53:12 +0000 | [diff] [blame] | 175 | std::unique_lock<std::mutex> Guard{ErrsLock}; |
| 176 | ViewOpts.colored_ostream(errs(), raw_ostream::RED) |
| 177 | << getErrorString(Message, Whence, false); |
Vedant Kumar | 86b2ac63 | 2016-07-13 21:38:36 +0000 | [diff] [blame] | 178 | } |
| 179 | |
Vedant Kumar | b302063 | 2016-07-18 17:53:12 +0000 | [diff] [blame] | 180 | void CodeCoverageTool::warning(const Twine &Message, StringRef Whence) { |
| 181 | std::unique_lock<std::mutex> Guard{ErrsLock}; |
| 182 | ViewOpts.colored_ostream(errs(), raw_ostream::RED) |
| 183 | << getErrorString(Message, Whence, true); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 184 | } |
| 185 | |
Vedant Kumar | cef440f | 2016-06-28 16:12:18 +0000 | [diff] [blame] | 186 | void CodeCoverageTool::addCollectedPath(const std::string &Path) { |
Sean Eveson | 9edfeac | 2017-08-14 10:20:12 +0000 | [diff] [blame] | 187 | SmallString<128> EffectivePath(Path); |
| 188 | if (std::error_code EC = sys::fs::make_absolute(EffectivePath)) { |
| 189 | error(EC.message(), Path); |
| 190 | return; |
Vedant Kumar | 1ce90d8 | 2016-09-22 21:49:43 +0000 | [diff] [blame] | 191 | } |
Sean Eveson | 9edfeac | 2017-08-14 10:20:12 +0000 | [diff] [blame] | 192 | sys::path::remove_dots(EffectivePath, /*remove_dot_dots=*/true); |
Max Moroz | 4220f89 | 2018-04-09 15:20:35 +0000 | [diff] [blame] | 193 | if (!IgnoreFilenameFilters.matchesFilename(EffectivePath)) |
| 194 | SourceFiles.emplace_back(EffectivePath.str()); |
Vedant Kumar | cef440f | 2016-06-28 16:12:18 +0000 | [diff] [blame] | 195 | } |
| 196 | |
Vedant Kumar | 1ce90d8 | 2016-09-22 21:49:43 +0000 | [diff] [blame] | 197 | void CodeCoverageTool::collectPaths(const std::string &Path) { |
| 198 | llvm::sys::fs::file_status Status; |
| 199 | llvm::sys::fs::status(Path, Status); |
| 200 | if (!llvm::sys::fs::exists(Status)) { |
Sean Eveson | 9edfeac | 2017-08-14 10:20:12 +0000 | [diff] [blame] | 201 | if (PathRemapping) |
Vedant Kumar | 1ce90d8 | 2016-09-22 21:49:43 +0000 | [diff] [blame] | 202 | addCollectedPath(Path); |
| 203 | else |
Max Moroz | 650fd6c | 2018-04-05 19:43:24 +0000 | [diff] [blame] | 204 | warning("Source file doesn't exist, proceeded by ignoring it.", Path); |
Vedant Kumar | 1ce90d8 | 2016-09-22 21:49:43 +0000 | [diff] [blame] | 205 | return; |
| 206 | } |
| 207 | |
| 208 | if (llvm::sys::fs::is_regular_file(Status)) { |
| 209 | addCollectedPath(Path); |
| 210 | return; |
| 211 | } |
| 212 | |
| 213 | if (llvm::sys::fs::is_directory(Status)) { |
| 214 | std::error_code EC; |
| 215 | for (llvm::sys::fs::recursive_directory_iterator F(Path, EC), E; |
Max Moroz | 650fd6c | 2018-04-05 19:43:24 +0000 | [diff] [blame] | 216 | F != E; F.increment(EC)) { |
| 217 | |
| 218 | if (EC) { |
| 219 | warning(EC.message(), F->path()); |
| 220 | continue; |
| 221 | } |
| 222 | |
Vedant Kumar | 1ce90d8 | 2016-09-22 21:49:43 +0000 | [diff] [blame] | 223 | if (llvm::sys::fs::is_regular_file(F->path())) |
| 224 | addCollectedPath(F->path()); |
| 225 | } |
Vedant Kumar | 1ce90d8 | 2016-09-22 21:49:43 +0000 | [diff] [blame] | 226 | } |
| 227 | } |
| 228 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 229 | ErrorOr<const MemoryBuffer &> |
| 230 | CodeCoverageTool::getSourceFile(StringRef SourceFile) { |
Justin Bogner | 116c166 | 2014-09-19 08:13:12 +0000 | [diff] [blame] | 231 | // If we've remapped filenames, look up the real location for this file. |
Vedant Kumar | 615b85d | 2016-07-15 01:19:36 +0000 | [diff] [blame] | 232 | std::unique_lock<std::mutex> Guard{LoadedSourceFilesLock}; |
Justin Bogner | 116c166 | 2014-09-19 08:13:12 +0000 | [diff] [blame] | 233 | if (!RemappedFilenames.empty()) { |
| 234 | auto Loc = RemappedFilenames.find(SourceFile); |
| 235 | if (Loc != RemappedFilenames.end()) |
| 236 | SourceFile = Loc->second; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 237 | } |
Justin Bogner | 116c166 | 2014-09-19 08:13:12 +0000 | [diff] [blame] | 238 | for (const auto &Files : LoadedSourceFiles) |
| 239 | if (sys::fs::equivalent(SourceFile, Files.first)) |
| 240 | return *Files.second; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 241 | auto Buffer = MemoryBuffer::getFile(SourceFile); |
| 242 | if (auto EC = Buffer.getError()) { |
Vedant Kumar | b302063 | 2016-07-18 17:53:12 +0000 | [diff] [blame] | 243 | error(EC.message(), SourceFile); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 244 | return EC; |
| 245 | } |
Benjamin Kramer | f5e2fc4 | 2015-05-29 19:43:39 +0000 | [diff] [blame] | 246 | LoadedSourceFiles.emplace_back(SourceFile, std::move(Buffer.get())); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 247 | return *LoadedSourceFiles.back().second; |
| 248 | } |
| 249 | |
Vedant Kumar | f681e2e | 2016-07-15 01:19:33 +0000 | [diff] [blame] | 250 | void CodeCoverageTool::attachExpansionSubViews( |
| 251 | SourceCoverageView &View, ArrayRef<ExpansionRecord> Expansions, |
| 252 | const CoverageMapping &Coverage) { |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 253 | if (!ViewOpts.ShowExpandedRegions) |
| 254 | return; |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 255 | for (const auto &Expansion : Expansions) { |
| 256 | auto ExpansionCoverage = Coverage.getCoverageForExpansion(Expansion); |
| 257 | if (ExpansionCoverage.empty()) |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 258 | continue; |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 259 | auto SourceBuffer = getSourceFile(ExpansionCoverage.getFilename()); |
| 260 | if (!SourceBuffer) |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 261 | continue; |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 262 | |
| 263 | auto SubViewExpansions = ExpansionCoverage.getExpansions(); |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 264 | auto SubView = |
| 265 | SourceCoverageView::create(Expansion.Function.Name, SourceBuffer.get(), |
| 266 | ViewOpts, std::move(ExpansionCoverage)); |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 267 | attachExpansionSubViews(*SubView, SubViewExpansions, Coverage); |
| 268 | View.addExpansion(Expansion.Region, std::move(SubView)); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 269 | } |
| 270 | } |
| 271 | |
Justin Bogner | 5a6edad | 2014-09-19 19:07:17 +0000 | [diff] [blame] | 272 | std::unique_ptr<SourceCoverageView> |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 273 | CodeCoverageTool::createFunctionView(const FunctionRecord &Function, |
Vedant Kumar | f681e2e | 2016-07-15 01:19:33 +0000 | [diff] [blame] | 274 | const CoverageMapping &Coverage) { |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 275 | auto FunctionCoverage = Coverage.getCoverageForFunction(Function); |
| 276 | if (FunctionCoverage.empty()) |
Justin Bogner | 5a6edad | 2014-09-19 19:07:17 +0000 | [diff] [blame] | 277 | return nullptr; |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 278 | auto SourceBuffer = getSourceFile(FunctionCoverage.getFilename()); |
Justin Bogner | 5a6edad | 2014-09-19 19:07:17 +0000 | [diff] [blame] | 279 | if (!SourceBuffer) |
| 280 | return nullptr; |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 281 | |
| 282 | auto Expansions = FunctionCoverage.getExpansions(); |
Vedant Kumar | 6e28bcd | 2017-02-05 20:10:58 +0000 | [diff] [blame] | 283 | auto View = SourceCoverageView::create(DC.demangle(Function.Name), |
Vedant Kumar | 0053c0b | 2016-09-08 00:56:48 +0000 | [diff] [blame] | 284 | SourceBuffer.get(), ViewOpts, |
| 285 | std::move(FunctionCoverage)); |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 286 | attachExpansionSubViews(*View, Expansions, Coverage); |
| 287 | |
| 288 | return View; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 289 | } |
| 290 | |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 291 | std::unique_ptr<SourceCoverageView> |
| 292 | CodeCoverageTool::createSourceFileView(StringRef SourceFile, |
Vedant Kumar | f681e2e | 2016-07-15 01:19:33 +0000 | [diff] [blame] | 293 | const CoverageMapping &Coverage) { |
Justin Bogner | 5a6edad | 2014-09-19 19:07:17 +0000 | [diff] [blame] | 294 | auto SourceBuffer = getSourceFile(SourceFile); |
| 295 | if (!SourceBuffer) |
| 296 | return nullptr; |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 297 | auto FileCoverage = Coverage.getCoverageForFile(SourceFile); |
| 298 | if (FileCoverage.empty()) |
Justin Bogner | 5a6edad | 2014-09-19 19:07:17 +0000 | [diff] [blame] | 299 | return nullptr; |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 300 | |
| 301 | auto Expansions = FileCoverage.getExpansions(); |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 302 | auto View = SourceCoverageView::create(SourceFile, SourceBuffer.get(), |
| 303 | ViewOpts, std::move(FileCoverage)); |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 304 | attachExpansionSubViews(*View, Expansions, Coverage); |
Vedant Kumar | 79554e4 | 2017-08-02 23:35:24 +0000 | [diff] [blame] | 305 | if (!ViewOpts.ShowFunctionInstantiations) |
| 306 | return View; |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 307 | |
Vedant Kumar | dde19c5 | 2017-08-02 23:35:25 +0000 | [diff] [blame] | 308 | for (const auto &Group : Coverage.getInstantiationGroups(SourceFile)) { |
| 309 | // Skip functions which have a single instantiation. |
| 310 | if (Group.size() < 2) |
| 311 | continue; |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 312 | |
Vedant Kumar | dde19c5 | 2017-08-02 23:35:25 +0000 | [diff] [blame] | 313 | for (const FunctionRecord *Function : Group.getInstantiations()) { |
| 314 | std::unique_ptr<SourceCoverageView> SubView{nullptr}; |
Vedant Kumar | e907977 | 2016-09-20 21:27:48 +0000 | [diff] [blame] | 315 | |
Vedant Kumar | dde19c5 | 2017-08-02 23:35:25 +0000 | [diff] [blame] | 316 | StringRef Funcname = DC.demangle(Function->Name); |
| 317 | |
| 318 | if (Function->ExecutionCount > 0) { |
| 319 | auto SubViewCoverage = Coverage.getCoverageForFunction(*Function); |
| 320 | auto SubViewExpansions = SubViewCoverage.getExpansions(); |
| 321 | SubView = SourceCoverageView::create( |
| 322 | Funcname, SourceBuffer.get(), ViewOpts, std::move(SubViewCoverage)); |
| 323 | attachExpansionSubViews(*SubView, SubViewExpansions, Coverage); |
| 324 | } |
| 325 | |
| 326 | unsigned FileID = Function->CountedRegions.front().FileID; |
| 327 | unsigned Line = 0; |
| 328 | for (const auto &CR : Function->CountedRegions) |
| 329 | if (CR.FileID == FileID) |
| 330 | Line = std::max(CR.LineEnd, Line); |
| 331 | View->addInstantiation(Funcname, Line, std::move(SubView)); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 332 | } |
| 333 | } |
Justin Bogner | 5a6edad | 2014-09-19 19:07:17 +0000 | [diff] [blame] | 334 | return View; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 335 | } |
| 336 | |
Justin Bogner | 65337d1 | 2015-05-04 04:09:38 +0000 | [diff] [blame] | 337 | static bool modifiedTimeGT(StringRef LHS, StringRef RHS) { |
| 338 | sys::fs::file_status Status; |
| 339 | if (sys::fs::status(LHS, Status)) |
| 340 | return false; |
| 341 | auto LHSTime = Status.getLastModificationTime(); |
| 342 | if (sys::fs::status(RHS, Status)) |
| 343 | return false; |
| 344 | auto RHSTime = Status.getLastModificationTime(); |
| 345 | return LHSTime > RHSTime; |
| 346 | } |
| 347 | |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 348 | std::unique_ptr<CoverageMapping> CodeCoverageTool::load() { |
Vedant Kumar | a3661ef | 2016-10-25 17:40:55 +0000 | [diff] [blame] | 349 | for (StringRef ObjectFilename : ObjectFilenames) |
| 350 | if (modifiedTimeGT(ObjectFilename, PGOFilename)) |
| 351 | warning("profile data may be out of date - object is newer", |
| 352 | ObjectFilename); |
Vedant Kumar | b302063 | 2016-07-18 17:53:12 +0000 | [diff] [blame] | 353 | auto CoverageOrErr = |
Vedant Kumar | 4b102c3 | 2017-08-01 21:23:26 +0000 | [diff] [blame] | 354 | CoverageMapping::load(ObjectFilenames, PGOFilename, CoverageArches); |
Vedant Kumar | 9152fd1 | 2016-05-19 03:54:45 +0000 | [diff] [blame] | 355 | if (Error E = CoverageOrErr.takeError()) { |
Vedant Kumar | a3661ef | 2016-10-25 17:40:55 +0000 | [diff] [blame] | 356 | error("Failed to load coverage: " + toString(std::move(E)), |
| 357 | join(ObjectFilenames.begin(), ObjectFilenames.end(), ", ")); |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 358 | return nullptr; |
| 359 | } |
| 360 | auto Coverage = std::move(CoverageOrErr.get()); |
| 361 | unsigned Mismatched = Coverage->getMismatchedCount(); |
Vedant Kumar | 18dd9e8 | 2017-09-21 01:11:30 +0000 | [diff] [blame] | 362 | if (Mismatched) { |
Benjamin Kramer | 3a13ed6 | 2017-12-28 16:58:54 +0000 | [diff] [blame] | 363 | warning(Twine(Mismatched) + " functions have mismatched data"); |
Justin Bogner | 116c166 | 2014-09-19 08:13:12 +0000 | [diff] [blame] | 364 | |
Vedant Kumar | 18dd9e8 | 2017-09-21 01:11:30 +0000 | [diff] [blame] | 365 | if (ViewOpts.Debug) { |
| 366 | for (const auto &HashMismatch : Coverage->getHashMismatches()) |
| 367 | errs() << "hash-mismatch: " |
| 368 | << "No profile record found for '" << HashMismatch.first << "'" |
Benjamin Kramer | 3a13ed6 | 2017-12-28 16:58:54 +0000 | [diff] [blame] | 369 | << " with hash = 0x" << Twine::utohexstr(HashMismatch.second) |
| 370 | << '\n'; |
Vedant Kumar | 18dd9e8 | 2017-09-21 01:11:30 +0000 | [diff] [blame] | 371 | |
| 372 | for (const auto &CounterMismatch : Coverage->getCounterMismatches()) |
| 373 | errs() << "counter-mismatch: " |
| 374 | << "Coverage mapping for " << CounterMismatch.first |
| 375 | << " only has " << CounterMismatch.second |
| 376 | << " valid counter expressions\n"; |
| 377 | } |
| 378 | } |
| 379 | |
Sean Eveson | 9edfeac | 2017-08-14 10:20:12 +0000 | [diff] [blame] | 380 | remapPathNames(*Coverage); |
| 381 | |
Vedant Kumar | cab52ad | 2016-09-23 20:13:41 +0000 | [diff] [blame] | 382 | if (!SourceFiles.empty()) |
| 383 | removeUnmappedInputs(*Coverage); |
| 384 | |
| 385 | demangleSymbols(*Coverage); |
| 386 | |
| 387 | return Coverage; |
| 388 | } |
| 389 | |
Sean Eveson | 9edfeac | 2017-08-14 10:20:12 +0000 | [diff] [blame] | 390 | void CodeCoverageTool::remapPathNames(const CoverageMapping &Coverage) { |
| 391 | if (!PathRemapping) |
| 392 | return; |
| 393 | |
| 394 | // Convert remapping paths to native paths with trailing seperators. |
| 395 | auto nativeWithTrailing = [](StringRef Path) -> std::string { |
| 396 | if (Path.empty()) |
| 397 | return ""; |
| 398 | SmallString<128> NativePath; |
| 399 | sys::path::native(Path, NativePath); |
| 400 | if (!sys::path::is_separator(NativePath.back())) |
| 401 | NativePath += sys::path::get_separator(); |
| 402 | return NativePath.c_str(); |
| 403 | }; |
| 404 | std::string RemapFrom = nativeWithTrailing(PathRemapping->first); |
| 405 | std::string RemapTo = nativeWithTrailing(PathRemapping->second); |
| 406 | |
| 407 | // Create a mapping from coverage data file paths to local paths. |
| 408 | for (StringRef Filename : Coverage.getUniqueSourceFiles()) { |
| 409 | SmallString<128> NativeFilename; |
| 410 | sys::path::native(Filename, NativeFilename); |
| 411 | if (NativeFilename.startswith(RemapFrom)) { |
| 412 | RemappedFilenames[Filename] = |
| 413 | RemapTo + NativeFilename.substr(RemapFrom.size()).str(); |
| 414 | } |
| 415 | } |
| 416 | |
| 417 | // Convert input files from local paths to coverage data file paths. |
| 418 | StringMap<std::string> InvRemappedFilenames; |
| 419 | for (const auto &RemappedFilename : RemappedFilenames) |
| 420 | InvRemappedFilenames[RemappedFilename.getValue()] = RemappedFilename.getKey(); |
| 421 | |
| 422 | for (std::string &Filename : SourceFiles) { |
| 423 | SmallString<128> NativeFilename; |
| 424 | sys::path::native(Filename, NativeFilename); |
| 425 | auto CovFileName = InvRemappedFilenames.find(NativeFilename); |
| 426 | if (CovFileName != InvRemappedFilenames.end()) |
| 427 | Filename = CovFileName->second; |
| 428 | } |
| 429 | } |
| 430 | |
Vedant Kumar | cab52ad | 2016-09-23 20:13:41 +0000 | [diff] [blame] | 431 | void CodeCoverageTool::removeUnmappedInputs(const CoverageMapping &Coverage) { |
| 432 | std::vector<StringRef> CoveredFiles = Coverage.getUniqueSourceFiles(); |
Vedant Kumar | 45880880 | 2016-09-23 18:57:35 +0000 | [diff] [blame] | 433 | |
| 434 | auto UncoveredFilesIt = SourceFiles.end(); |
Sean Eveson | 9edfeac | 2017-08-14 10:20:12 +0000 | [diff] [blame] | 435 | // The user may have specified source files which aren't in the coverage |
| 436 | // mapping. Filter these files away. |
| 437 | UncoveredFilesIt = std::remove_if( |
| 438 | SourceFiles.begin(), SourceFiles.end(), [&](const std::string &SF) { |
| 439 | return !std::binary_search(CoveredFiles.begin(), CoveredFiles.end(), |
| 440 | SF); |
| 441 | }); |
Justin Bogner | 116c166 | 2014-09-19 08:13:12 +0000 | [diff] [blame] | 442 | |
Vedant Kumar | 45880880 | 2016-09-23 18:57:35 +0000 | [diff] [blame] | 443 | SourceFiles.erase(UncoveredFilesIt, SourceFiles.end()); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 444 | } |
| 445 | |
Vedant Kumar | 424f51b | 2016-07-15 22:44:57 +0000 | [diff] [blame] | 446 | void CodeCoverageTool::demangleSymbols(const CoverageMapping &Coverage) { |
| 447 | if (!ViewOpts.hasDemangler()) |
| 448 | return; |
| 449 | |
| 450 | // Pass function names to the demangler in a temporary file. |
| 451 | int InputFD; |
| 452 | SmallString<256> InputPath; |
| 453 | std::error_code EC = |
| 454 | sys::fs::createTemporaryFile("demangle-in", "list", InputFD, InputPath); |
| 455 | if (EC) { |
| 456 | error(InputPath, EC.message()); |
| 457 | return; |
| 458 | } |
Reid Kleckner | 3fc649c | 2017-09-23 01:03:17 +0000 | [diff] [blame] | 459 | ToolOutputFile InputTOF{InputPath, InputFD}; |
Vedant Kumar | 424f51b | 2016-07-15 22:44:57 +0000 | [diff] [blame] | 460 | |
| 461 | unsigned NumSymbols = 0; |
| 462 | for (const auto &Function : Coverage.getCoveredFunctions()) { |
| 463 | InputTOF.os() << Function.Name << '\n'; |
| 464 | ++NumSymbols; |
| 465 | } |
Vedant Kumar | 554357b | 2016-07-15 23:08:22 +0000 | [diff] [blame] | 466 | InputTOF.os().close(); |
Vedant Kumar | 424f51b | 2016-07-15 22:44:57 +0000 | [diff] [blame] | 467 | |
| 468 | // Use another temporary file to store the demangler's output. |
| 469 | int OutputFD; |
| 470 | SmallString<256> OutputPath; |
| 471 | EC = sys::fs::createTemporaryFile("demangle-out", "list", OutputFD, |
| 472 | OutputPath); |
| 473 | if (EC) { |
| 474 | error(OutputPath, EC.message()); |
| 475 | return; |
| 476 | } |
Reid Kleckner | 3fc649c | 2017-09-23 01:03:17 +0000 | [diff] [blame] | 477 | ToolOutputFile OutputTOF{OutputPath, OutputFD}; |
Vedant Kumar | 554357b | 2016-07-15 23:08:22 +0000 | [diff] [blame] | 478 | OutputTOF.os().close(); |
Vedant Kumar | 424f51b | 2016-07-15 22:44:57 +0000 | [diff] [blame] | 479 | |
| 480 | // Invoke the demangler. |
Zachary Turner | 08426e1 | 2018-06-12 17:43:52 +0000 | [diff] [blame^] | 481 | std::vector<StringRef> ArgsV; |
| 482 | for (StringRef Arg : ViewOpts.DemanglerOpts) |
| 483 | ArgsV.push_back(Arg); |
Alexander Kornienko | 208eecd | 2017-09-13 17:03:37 +0000 | [diff] [blame] | 484 | Optional<StringRef> Redirects[] = {InputPath.str(), OutputPath.str(), {""}}; |
Vedant Kumar | 424f51b | 2016-07-15 22:44:57 +0000 | [diff] [blame] | 485 | std::string ErrMsg; |
Zachary Turner | 08426e1 | 2018-06-12 17:43:52 +0000 | [diff] [blame^] | 486 | int RC = sys::ExecuteAndWait(ViewOpts.DemanglerOpts[0], ArgsV, |
| 487 | /*env=*/None, Redirects, /*secondsToWait=*/0, |
Vedant Kumar | 424f51b | 2016-07-15 22:44:57 +0000 | [diff] [blame] | 488 | /*memoryLimit=*/0, &ErrMsg); |
| 489 | if (RC) { |
| 490 | error(ErrMsg, ViewOpts.DemanglerOpts[0]); |
| 491 | return; |
| 492 | } |
| 493 | |
| 494 | // Parse the demangler's output. |
| 495 | auto BufOrError = MemoryBuffer::getFile(OutputPath); |
| 496 | if (!BufOrError) { |
| 497 | error(OutputPath, BufOrError.getError().message()); |
| 498 | return; |
| 499 | } |
| 500 | |
| 501 | std::unique_ptr<MemoryBuffer> DemanglerBuf = std::move(*BufOrError); |
| 502 | |
| 503 | SmallVector<StringRef, 8> Symbols; |
| 504 | StringRef DemanglerData = DemanglerBuf->getBuffer(); |
| 505 | DemanglerData.split(Symbols, '\n', /*MaxSplit=*/NumSymbols, |
| 506 | /*KeepEmpty=*/false); |
| 507 | if (Symbols.size() != NumSymbols) { |
| 508 | error("Demangler did not provide expected number of symbols"); |
| 509 | return; |
| 510 | } |
| 511 | |
| 512 | // Cache the demangled names. |
| 513 | unsigned I = 0; |
| 514 | for (const auto &Function : Coverage.getCoveredFunctions()) |
Igor Kudrin | 9e015da | 2017-02-19 14:26:52 +0000 | [diff] [blame] | 515 | // On Windows, lines in the demangler's output file end with "\r\n". |
| 516 | // Splitting by '\n' keeps '\r's, so cut them now. |
| 517 | DC.DemangledNames[Function.Name] = Symbols[I++].rtrim(); |
Vedant Kumar | 424f51b | 2016-07-15 22:44:57 +0000 | [diff] [blame] | 518 | } |
| 519 | |
Vedant Kumar | 6fd94bf | 2016-10-19 17:55:44 +0000 | [diff] [blame] | 520 | void CodeCoverageTool::writeSourceFileView(StringRef SourceFile, |
| 521 | CoverageMapping *Coverage, |
| 522 | CoveragePrinter *Printer, |
| 523 | bool ShowFilenames) { |
| 524 | auto View = createSourceFileView(SourceFile, *Coverage); |
| 525 | if (!View) { |
| 526 | warning("The file '" + SourceFile + "' isn't covered."); |
| 527 | return; |
| 528 | } |
| 529 | |
| 530 | auto OSOrErr = Printer->createViewFile(SourceFile, /*InToplevel=*/false); |
| 531 | if (Error E = OSOrErr.takeError()) { |
| 532 | error("Could not create view file!", toString(std::move(E))); |
| 533 | return; |
| 534 | } |
| 535 | auto OS = std::move(OSOrErr.get()); |
| 536 | |
| 537 | View->print(*OS.get(), /*Wholefile=*/true, |
Sean Eveson | fa8ef35 | 2017-09-28 10:07:30 +0000 | [diff] [blame] | 538 | /*ShowSourceName=*/ShowFilenames, |
| 539 | /*ShowTitle=*/ViewOpts.hasOutputDirectory()); |
Vedant Kumar | 6fd94bf | 2016-10-19 17:55:44 +0000 | [diff] [blame] | 540 | Printer->closeViewFile(std::move(OS)); |
| 541 | } |
| 542 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 543 | int CodeCoverageTool::run(Command Cmd, int argc, const char **argv) { |
Vedant Kumar | a3661ef | 2016-10-25 17:40:55 +0000 | [diff] [blame] | 544 | cl::opt<std::string> CovFilename( |
| 545 | cl::Positional, cl::desc("Covered executable or object file.")); |
| 546 | |
| 547 | cl::list<std::string> CovFilenames( |
| 548 | "object", cl::desc("Coverage executable or object file"), cl::ZeroOrMore, |
| 549 | cl::CommaSeparated); |
Justin Bogner | f6c5055 | 2014-10-30 20:51:24 +0000 | [diff] [blame] | 550 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 551 | cl::list<std::string> InputSourceFiles( |
| 552 | cl::Positional, cl::desc("<Source files>"), cl::ZeroOrMore); |
| 553 | |
Vedant Kumar | 1ce90d8 | 2016-09-22 21:49:43 +0000 | [diff] [blame] | 554 | cl::opt<bool> DebugDumpCollectedPaths( |
| 555 | "dump-collected-paths", cl::Optional, cl::Hidden, |
| 556 | cl::desc("Show the collected paths to source files")); |
| 557 | |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 558 | cl::opt<std::string, true> PGOFilename( |
| 559 | "instr-profile", cl::Required, cl::location(this->PGOFilename), |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 560 | cl::desc( |
| 561 | "File with the profile data obtained after an instrumented run")); |
| 562 | |
Vedant Kumar | 4b102c3 | 2017-08-01 21:23:26 +0000 | [diff] [blame] | 563 | cl::list<std::string> Arches( |
| 564 | "arch", cl::desc("architectures of the coverage mapping binaries")); |
Justin Bogner | 4379535 | 2015-03-11 02:30:51 +0000 | [diff] [blame] | 565 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 566 | cl::opt<bool> DebugDump("dump", cl::Optional, |
| 567 | cl::desc("Show internal debug dump")); |
| 568 | |
Vedant Kumar | 8d74cb2 | 2016-06-29 00:38:21 +0000 | [diff] [blame] | 569 | cl::opt<CoverageViewOptions::OutputFormat> Format( |
| 570 | "format", cl::desc("Output format for line-based coverage reports"), |
| 571 | cl::values(clEnumValN(CoverageViewOptions::OutputFormat::Text, "text", |
| 572 | "Text output"), |
Vedant Kumar | 4c01092 | 2016-07-06 21:44:05 +0000 | [diff] [blame] | 573 | clEnumValN(CoverageViewOptions::OutputFormat::HTML, "html", |
Mehdi Amini | 732afdd | 2016-10-08 19:41:06 +0000 | [diff] [blame] | 574 | "HTML output")), |
Vedant Kumar | 8d74cb2 | 2016-06-29 00:38:21 +0000 | [diff] [blame] | 575 | cl::init(CoverageViewOptions::OutputFormat::Text)); |
| 576 | |
Sean Eveson | 9edfeac | 2017-08-14 10:20:12 +0000 | [diff] [blame] | 577 | cl::opt<std::string> PathRemap( |
| 578 | "path-equivalence", cl::Optional, |
| 579 | cl::desc("<from>,<to> Map coverage data paths to local source file " |
| 580 | "paths")); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 581 | |
| 582 | cl::OptionCategory FilteringCategory("Function filtering options"); |
| 583 | |
| 584 | cl::list<std::string> NameFilters( |
| 585 | "name", cl::Optional, |
| 586 | cl::desc("Show code coverage only for functions with the given name"), |
| 587 | cl::ZeroOrMore, cl::cat(FilteringCategory)); |
| 588 | |
Sean Eveson | e15300e | 2017-08-31 09:11:31 +0000 | [diff] [blame] | 589 | cl::list<std::string> NameFilterFiles( |
| 590 | "name-whitelist", cl::Optional, |
| 591 | cl::desc("Show code coverage only for functions listed in the given " |
| 592 | "file"), |
| 593 | cl::ZeroOrMore, cl::cat(FilteringCategory)); |
| 594 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 595 | cl::list<std::string> NameRegexFilters( |
| 596 | "name-regex", cl::Optional, |
| 597 | cl::desc("Show code coverage only for functions that match the given " |
| 598 | "regular expression"), |
| 599 | cl::ZeroOrMore, cl::cat(FilteringCategory)); |
| 600 | |
Max Moroz | 4220f89 | 2018-04-09 15:20:35 +0000 | [diff] [blame] | 601 | cl::list<std::string> IgnoreFilenameRegexFilters( |
| 602 | "ignore-filename-regex", cl::Optional, |
| 603 | cl::desc("Skip source code files with file paths that match the given " |
| 604 | "regular expression"), |
| 605 | cl::ZeroOrMore, cl::cat(FilteringCategory)); |
| 606 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 607 | cl::opt<double> RegionCoverageLtFilter( |
| 608 | "region-coverage-lt", cl::Optional, |
| 609 | cl::desc("Show code coverage only for functions with region coverage " |
| 610 | "less than the given threshold"), |
| 611 | cl::cat(FilteringCategory)); |
| 612 | |
| 613 | cl::opt<double> RegionCoverageGtFilter( |
| 614 | "region-coverage-gt", cl::Optional, |
| 615 | cl::desc("Show code coverage only for functions with region coverage " |
| 616 | "greater than the given threshold"), |
| 617 | cl::cat(FilteringCategory)); |
| 618 | |
| 619 | cl::opt<double> LineCoverageLtFilter( |
| 620 | "line-coverage-lt", cl::Optional, |
| 621 | cl::desc("Show code coverage only for functions with line coverage less " |
| 622 | "than the given threshold"), |
| 623 | cl::cat(FilteringCategory)); |
| 624 | |
| 625 | cl::opt<double> LineCoverageGtFilter( |
| 626 | "line-coverage-gt", cl::Optional, |
| 627 | cl::desc("Show code coverage only for functions with line coverage " |
| 628 | "greater than the given threshold"), |
| 629 | cl::cat(FilteringCategory)); |
| 630 | |
Justin Bogner | 9deb1d4 | 2015-03-19 04:45:16 +0000 | [diff] [blame] | 631 | cl::opt<cl::boolOrDefault> UseColor( |
| 632 | "use-color", cl::desc("Emit colored output (default=autodetect)"), |
| 633 | cl::init(cl::BOU_UNSET)); |
Justin Bogner | cfb53e4 | 2015-03-19 00:02:23 +0000 | [diff] [blame] | 634 | |
Vedant Kumar | 424f51b | 2016-07-15 22:44:57 +0000 | [diff] [blame] | 635 | cl::list<std::string> DemanglerOpts( |
| 636 | "Xdemangler", cl::desc("<demangler-path>|<demangler-option>")); |
| 637 | |
Eli Friedman | 50479f6 | 2017-09-11 22:56:20 +0000 | [diff] [blame] | 638 | cl::opt<bool> RegionSummary( |
| 639 | "show-region-summary", cl::Optional, |
| 640 | cl::desc("Show region statistics in summary table"), |
| 641 | cl::init(true)); |
| 642 | |
| 643 | cl::opt<bool> InstantiationSummary( |
| 644 | "show-instantiation-summary", cl::Optional, |
| 645 | cl::desc("Show instantiation statistics in summary table")); |
| 646 | |
Max Moroz | fe4d904 | 2017-12-11 23:17:46 +0000 | [diff] [blame] | 647 | cl::opt<bool> SummaryOnly( |
| 648 | "summary-only", cl::Optional, |
| 649 | cl::desc("Export only summary information for each source file")); |
| 650 | |
Max Moroz | cc254ba | 2018-01-05 16:15:07 +0000 | [diff] [blame] | 651 | cl::opt<unsigned> NumThreads( |
| 652 | "num-threads", cl::init(0), |
| 653 | cl::desc("Number of merge threads to use (default: autodetect)")); |
| 654 | cl::alias NumThreadsA("j", cl::desc("Alias for --num-threads"), |
| 655 | cl::aliasopt(NumThreads)); |
| 656 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 657 | auto commandLineParser = [&, this](int argc, const char **argv) -> int { |
| 658 | cl::ParseCommandLineOptions(argc, argv, "LLVM code coverage tool\n"); |
| 659 | ViewOpts.Debug = DebugDump; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 660 | |
Vedant Kumar | a3661ef | 2016-10-25 17:40:55 +0000 | [diff] [blame] | 661 | if (!CovFilename.empty()) |
| 662 | ObjectFilenames.emplace_back(CovFilename); |
| 663 | for (const std::string &Filename : CovFilenames) |
| 664 | ObjectFilenames.emplace_back(Filename); |
| 665 | if (ObjectFilenames.empty()) { |
Vedant Kumar | 22c1b7c | 2016-10-25 19:52:57 +0000 | [diff] [blame] | 666 | errs() << "No filenames specified!\n"; |
Vedant Kumar | a3661ef | 2016-10-25 17:40:55 +0000 | [diff] [blame] | 667 | ::exit(1); |
| 668 | } |
| 669 | |
Vedant Kumar | 8d74cb2 | 2016-06-29 00:38:21 +0000 | [diff] [blame] | 670 | ViewOpts.Format = Format; |
| 671 | switch (ViewOpts.Format) { |
| 672 | case CoverageViewOptions::OutputFormat::Text: |
| 673 | ViewOpts.Colors = UseColor == cl::BOU_UNSET |
| 674 | ? sys::Process::StandardOutHasColors() |
| 675 | : UseColor == cl::BOU_TRUE; |
| 676 | break; |
Vedant Kumar | 4c01092 | 2016-07-06 21:44:05 +0000 | [diff] [blame] | 677 | case CoverageViewOptions::OutputFormat::HTML: |
| 678 | if (UseColor == cl::BOU_FALSE) |
Vedant Kumar | 22c1b7c | 2016-10-25 19:52:57 +0000 | [diff] [blame] | 679 | errs() << "Color output cannot be disabled when generating html.\n"; |
Vedant Kumar | 4c01092 | 2016-07-06 21:44:05 +0000 | [diff] [blame] | 680 | ViewOpts.Colors = true; |
| 681 | break; |
Vedant Kumar | 8d74cb2 | 2016-06-29 00:38:21 +0000 | [diff] [blame] | 682 | } |
Justin Bogner | cfb53e4 | 2015-03-19 00:02:23 +0000 | [diff] [blame] | 683 | |
Sean Eveson | 9edfeac | 2017-08-14 10:20:12 +0000 | [diff] [blame] | 684 | // If path-equivalence was given and is a comma seperated pair then set |
| 685 | // PathRemapping. |
| 686 | auto EquivPair = StringRef(PathRemap).split(','); |
| 687 | if (!(EquivPair.first.empty() && EquivPair.second.empty())) |
| 688 | PathRemapping = EquivPair; |
| 689 | |
Vedant Kumar | 424f51b | 2016-07-15 22:44:57 +0000 | [diff] [blame] | 690 | // If a demangler is supplied, check if it exists and register it. |
| 691 | if (DemanglerOpts.size()) { |
| 692 | auto DemanglerPathOrErr = sys::findProgramByName(DemanglerOpts[0]); |
| 693 | if (!DemanglerPathOrErr) { |
| 694 | error("Could not find the demangler!", |
| 695 | DemanglerPathOrErr.getError().message()); |
| 696 | return 1; |
| 697 | } |
| 698 | DemanglerOpts[0] = *DemanglerPathOrErr; |
| 699 | ViewOpts.DemanglerOpts.swap(DemanglerOpts); |
| 700 | } |
| 701 | |
Sean Eveson | e15300e | 2017-08-31 09:11:31 +0000 | [diff] [blame] | 702 | // Read in -name-whitelist files. |
| 703 | if (!NameFilterFiles.empty()) { |
| 704 | std::string SpecialCaseListErr; |
| 705 | NameWhitelist = |
| 706 | SpecialCaseList::create(NameFilterFiles, SpecialCaseListErr); |
| 707 | if (!NameWhitelist) |
| 708 | error(SpecialCaseListErr); |
| 709 | } |
| 710 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 711 | // Create the function filters |
Sean Eveson | e15300e | 2017-08-31 09:11:31 +0000 | [diff] [blame] | 712 | if (!NameFilters.empty() || NameWhitelist || !NameRegexFilters.empty()) { |
Vedant Kumar | 8a62238 | 2017-08-04 00:36:24 +0000 | [diff] [blame] | 713 | auto NameFilterer = llvm::make_unique<CoverageFilters>(); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 714 | for (const auto &Name : NameFilters) |
| 715 | NameFilterer->push_back(llvm::make_unique<NameCoverageFilter>(Name)); |
Sean Eveson | e15300e | 2017-08-31 09:11:31 +0000 | [diff] [blame] | 716 | if (NameWhitelist) |
| 717 | NameFilterer->push_back( |
| 718 | llvm::make_unique<NameWhitelistCoverageFilter>(*NameWhitelist)); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 719 | for (const auto &Regex : NameRegexFilters) |
| 720 | NameFilterer->push_back( |
| 721 | llvm::make_unique<NameRegexCoverageFilter>(Regex)); |
Vedant Kumar | 8a62238 | 2017-08-04 00:36:24 +0000 | [diff] [blame] | 722 | Filters.push_back(std::move(NameFilterer)); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 723 | } |
Max Moroz | 4220f89 | 2018-04-09 15:20:35 +0000 | [diff] [blame] | 724 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 725 | if (RegionCoverageLtFilter.getNumOccurrences() || |
| 726 | RegionCoverageGtFilter.getNumOccurrences() || |
| 727 | LineCoverageLtFilter.getNumOccurrences() || |
| 728 | LineCoverageGtFilter.getNumOccurrences()) { |
Vedant Kumar | 8a62238 | 2017-08-04 00:36:24 +0000 | [diff] [blame] | 729 | auto StatFilterer = llvm::make_unique<CoverageFilters>(); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 730 | if (RegionCoverageLtFilter.getNumOccurrences()) |
| 731 | StatFilterer->push_back(llvm::make_unique<RegionCoverageFilter>( |
| 732 | RegionCoverageFilter::LessThan, RegionCoverageLtFilter)); |
| 733 | if (RegionCoverageGtFilter.getNumOccurrences()) |
| 734 | StatFilterer->push_back(llvm::make_unique<RegionCoverageFilter>( |
| 735 | RegionCoverageFilter::GreaterThan, RegionCoverageGtFilter)); |
| 736 | if (LineCoverageLtFilter.getNumOccurrences()) |
| 737 | StatFilterer->push_back(llvm::make_unique<LineCoverageFilter>( |
| 738 | LineCoverageFilter::LessThan, LineCoverageLtFilter)); |
| 739 | if (LineCoverageGtFilter.getNumOccurrences()) |
| 740 | StatFilterer->push_back(llvm::make_unique<LineCoverageFilter>( |
| 741 | RegionCoverageFilter::GreaterThan, LineCoverageGtFilter)); |
Vedant Kumar | 8a62238 | 2017-08-04 00:36:24 +0000 | [diff] [blame] | 742 | Filters.push_back(std::move(StatFilterer)); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 743 | } |
| 744 | |
Max Moroz | 4220f89 | 2018-04-09 15:20:35 +0000 | [diff] [blame] | 745 | // Create the ignore filename filters. |
| 746 | for (const auto &RE : IgnoreFilenameRegexFilters) |
| 747 | IgnoreFilenameFilters.push_back( |
| 748 | llvm::make_unique<NameRegexCoverageFilter>(RE)); |
| 749 | |
Vedant Kumar | 4b102c3 | 2017-08-01 21:23:26 +0000 | [diff] [blame] | 750 | if (!Arches.empty()) { |
| 751 | for (const std::string &Arch : Arches) { |
| 752 | if (Triple(Arch).getArch() == llvm::Triple::ArchType::UnknownArch) { |
| 753 | error("Unknown architecture: " + Arch); |
| 754 | return 1; |
| 755 | } |
| 756 | CoverageArches.emplace_back(Arch); |
| 757 | } |
| 758 | if (CoverageArches.size() != ObjectFilenames.size()) { |
| 759 | error("Number of architectures doesn't match the number of objects"); |
| 760 | return 1; |
| 761 | } |
Justin Bogner | 4379535 | 2015-03-11 02:30:51 +0000 | [diff] [blame] | 762 | } |
| 763 | |
Max Moroz | 4220f89 | 2018-04-09 15:20:35 +0000 | [diff] [blame] | 764 | // IgnoreFilenameFilters are applied even when InputSourceFiles specified. |
Vedant Kumar | 1ce90d8 | 2016-09-22 21:49:43 +0000 | [diff] [blame] | 765 | for (const std::string &File : InputSourceFiles) |
| 766 | collectPaths(File); |
| 767 | |
| 768 | if (DebugDumpCollectedPaths) { |
Vedant Kumar | bc64798 | 2016-09-23 18:57:32 +0000 | [diff] [blame] | 769 | for (const std::string &SF : SourceFiles) |
Vedant Kumar | 1ce90d8 | 2016-09-22 21:49:43 +0000 | [diff] [blame] | 770 | outs() << SF << '\n'; |
| 771 | ::exit(0); |
Justin Bogner | 116c166 | 2014-09-19 08:13:12 +0000 | [diff] [blame] | 772 | } |
Vedant Kumar | 1ce90d8 | 2016-09-22 21:49:43 +0000 | [diff] [blame] | 773 | |
Eli Friedman | 50479f6 | 2017-09-11 22:56:20 +0000 | [diff] [blame] | 774 | ViewOpts.ShowRegionSummary = RegionSummary; |
| 775 | ViewOpts.ShowInstantiationSummary = InstantiationSummary; |
Max Moroz | fe4d904 | 2017-12-11 23:17:46 +0000 | [diff] [blame] | 776 | ViewOpts.ExportSummaryOnly = SummaryOnly; |
Max Moroz | cc254ba | 2018-01-05 16:15:07 +0000 | [diff] [blame] | 777 | ViewOpts.NumThreads = NumThreads; |
Eli Friedman | 50479f6 | 2017-09-11 22:56:20 +0000 | [diff] [blame] | 778 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 779 | return 0; |
| 780 | }; |
| 781 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 782 | switch (Cmd) { |
| 783 | case Show: |
Max Moroz | 1ef3a77 | 2018-01-04 19:33:29 +0000 | [diff] [blame] | 784 | return doShow(argc, argv, commandLineParser); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 785 | case Report: |
Max Moroz | 1ef3a77 | 2018-01-04 19:33:29 +0000 | [diff] [blame] | 786 | return doReport(argc, argv, commandLineParser); |
Vedant Kumar | 7101d73 | 2016-07-26 22:50:58 +0000 | [diff] [blame] | 787 | case Export: |
Max Moroz | 1ef3a77 | 2018-01-04 19:33:29 +0000 | [diff] [blame] | 788 | return doExport(argc, argv, commandLineParser); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 789 | } |
| 790 | return 0; |
| 791 | } |
| 792 | |
Max Moroz | 1ef3a77 | 2018-01-04 19:33:29 +0000 | [diff] [blame] | 793 | int CodeCoverageTool::doShow(int argc, const char **argv, |
| 794 | CommandLineParserType commandLineParser) { |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 795 | |
| 796 | cl::OptionCategory ViewCategory("Viewing options"); |
| 797 | |
| 798 | cl::opt<bool> ShowLineExecutionCounts( |
| 799 | "show-line-counts", cl::Optional, |
| 800 | cl::desc("Show the execution counts for each line"), cl::init(true), |
| 801 | cl::cat(ViewCategory)); |
| 802 | |
| 803 | cl::opt<bool> ShowRegions( |
| 804 | "show-regions", cl::Optional, |
| 805 | cl::desc("Show the execution counts for each region"), |
| 806 | cl::cat(ViewCategory)); |
| 807 | |
| 808 | cl::opt<bool> ShowBestLineRegionsCounts( |
| 809 | "show-line-counts-or-regions", cl::Optional, |
| 810 | cl::desc("Show the execution counts for each line, or the execution " |
| 811 | "counts for each region on lines that have multiple regions"), |
| 812 | cl::cat(ViewCategory)); |
| 813 | |
| 814 | cl::opt<bool> ShowExpansions("show-expansions", cl::Optional, |
| 815 | cl::desc("Show expanded source regions"), |
| 816 | cl::cat(ViewCategory)); |
| 817 | |
| 818 | cl::opt<bool> ShowInstantiations("show-instantiations", cl::Optional, |
| 819 | cl::desc("Show function instantiations"), |
Vedant Kumar | 79554e4 | 2017-08-02 23:35:24 +0000 | [diff] [blame] | 820 | cl::init(true), cl::cat(ViewCategory)); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 821 | |
Vedant Kumar | 7937ef3 | 2016-06-28 02:09:39 +0000 | [diff] [blame] | 822 | cl::opt<std::string> ShowOutputDirectory( |
| 823 | "output-dir", cl::init(""), |
| 824 | cl::desc("Directory in which coverage information is written out")); |
| 825 | cl::alias ShowOutputDirectoryA("o", cl::desc("Alias for --output-dir"), |
| 826 | cl::aliasopt(ShowOutputDirectory)); |
| 827 | |
Ying Yi | 0ef31b7 | 2016-08-04 10:39:43 +0000 | [diff] [blame] | 828 | cl::opt<uint32_t> TabSize( |
Vedant Kumar | ad547d3 | 2016-08-04 18:00:42 +0000 | [diff] [blame] | 829 | "tab-size", cl::init(2), |
| 830 | cl::desc( |
| 831 | "Set tab expansion size for html coverage reports (default = 2)")); |
Ying Yi | 0ef31b7 | 2016-08-04 10:39:43 +0000 | [diff] [blame] | 832 | |
Ying Yi | 84dc971 | 2016-08-24 14:27:23 +0000 | [diff] [blame] | 833 | cl::opt<std::string> ProjectTitle( |
| 834 | "project-title", cl::Optional, |
| 835 | cl::desc("Set project title for the coverage report")); |
| 836 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 837 | auto Err = commandLineParser(argc, argv); |
| 838 | if (Err) |
| 839 | return Err; |
| 840 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 841 | ViewOpts.ShowLineNumbers = true; |
| 842 | ViewOpts.ShowLineStats = ShowLineExecutionCounts.getNumOccurrences() != 0 || |
| 843 | !ShowRegions || ShowBestLineRegionsCounts; |
| 844 | ViewOpts.ShowRegionMarkers = ShowRegions || ShowBestLineRegionsCounts; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 845 | ViewOpts.ShowExpandedRegions = ShowExpansions; |
| 846 | ViewOpts.ShowFunctionInstantiations = ShowInstantiations; |
Vedant Kumar | 7937ef3 | 2016-06-28 02:09:39 +0000 | [diff] [blame] | 847 | ViewOpts.ShowOutputDirectory = ShowOutputDirectory; |
Ying Yi | 0ef31b7 | 2016-08-04 10:39:43 +0000 | [diff] [blame] | 848 | ViewOpts.TabSize = TabSize; |
Ying Yi | 84dc971 | 2016-08-24 14:27:23 +0000 | [diff] [blame] | 849 | ViewOpts.ProjectTitle = ProjectTitle; |
Vedant Kumar | 7937ef3 | 2016-06-28 02:09:39 +0000 | [diff] [blame] | 850 | |
Vedant Kumar | 64d8a02 | 2016-06-28 16:12:20 +0000 | [diff] [blame] | 851 | if (ViewOpts.hasOutputDirectory()) { |
Vedant Kumar | 7937ef3 | 2016-06-28 02:09:39 +0000 | [diff] [blame] | 852 | if (auto E = sys::fs::create_directories(ViewOpts.ShowOutputDirectory)) { |
| 853 | error("Could not create output directory!", E.message()); |
| 854 | return 1; |
| 855 | } |
| 856 | } |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 857 | |
Ying Yi | 84dc971 | 2016-08-24 14:27:23 +0000 | [diff] [blame] | 858 | sys::fs::file_status Status; |
| 859 | if (sys::fs::status(PGOFilename, Status)) { |
| 860 | error("profdata file error: can not get the file status. \n"); |
| 861 | return 1; |
| 862 | } |
| 863 | |
| 864 | auto ModifiedTime = Status.getLastModificationTime(); |
Pavel Labath | 757ca88 | 2016-10-24 10:59:17 +0000 | [diff] [blame] | 865 | std::string ModifiedTimeStr = to_string(ModifiedTime); |
Benjamin Kramer | e6ba5ef | 2016-11-30 10:01:11 +0000 | [diff] [blame] | 866 | size_t found = ModifiedTimeStr.rfind(':'); |
Ying Yi | 84dc971 | 2016-08-24 14:27:23 +0000 | [diff] [blame] | 867 | ViewOpts.CreatedTimeStr = (found != std::string::npos) |
| 868 | ? "Created: " + ModifiedTimeStr.substr(0, found) |
| 869 | : "Created: " + ModifiedTimeStr; |
| 870 | |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 871 | auto Coverage = load(); |
| 872 | if (!Coverage) |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 873 | return 1; |
| 874 | |
Vedant Kumar | 9cbad2c | 2016-06-28 16:12:24 +0000 | [diff] [blame] | 875 | auto Printer = CoveragePrinter::create(ViewOpts); |
| 876 | |
Sean Eveson | 1439fa6 | 2017-09-27 16:20:07 +0000 | [diff] [blame] | 877 | if (SourceFiles.empty()) |
| 878 | // Get the source files from the function coverage mapping. |
Max Moroz | 4220f89 | 2018-04-09 15:20:35 +0000 | [diff] [blame] | 879 | for (StringRef Filename : Coverage->getUniqueSourceFiles()) { |
| 880 | if (!IgnoreFilenameFilters.matchesFilename(Filename)) |
| 881 | SourceFiles.push_back(Filename); |
| 882 | } |
Sean Eveson | 1439fa6 | 2017-09-27 16:20:07 +0000 | [diff] [blame] | 883 | |
| 884 | // Create an index out of the source files. |
| 885 | if (ViewOpts.hasOutputDirectory()) { |
Sean Eveson | fa8ef35 | 2017-09-28 10:07:30 +0000 | [diff] [blame] | 886 | if (Error E = Printer->createIndexFile(SourceFiles, *Coverage, Filters)) { |
Sean Eveson | 1439fa6 | 2017-09-27 16:20:07 +0000 | [diff] [blame] | 887 | error("Could not create index file!", toString(std::move(E))); |
| 888 | return 1; |
| 889 | } |
| 890 | } |
| 891 | |
Sean Eveson | fa8ef35 | 2017-09-28 10:07:30 +0000 | [diff] [blame] | 892 | if (!Filters.empty()) { |
| 893 | // Build the map of filenames to functions. |
| 894 | std::map<llvm::StringRef, std::vector<const FunctionRecord *>> |
| 895 | FilenameFunctionMap; |
| 896 | for (const auto &SourceFile : SourceFiles) |
| 897 | for (const auto &Function : Coverage->getCoveredFunctions(SourceFile)) |
| 898 | if (Filters.matches(*Coverage.get(), Function)) |
| 899 | FilenameFunctionMap[SourceFile].push_back(&Function); |
| 900 | |
| 901 | // Only print filter matching functions for each file. |
| 902 | for (const auto &FileFunc : FilenameFunctionMap) { |
| 903 | StringRef File = FileFunc.first; |
| 904 | const auto &Functions = FileFunc.second; |
| 905 | |
| 906 | auto OSOrErr = Printer->createViewFile(File, /*InToplevel=*/false); |
| 907 | if (Error E = OSOrErr.takeError()) { |
| 908 | error("Could not create view file!", toString(std::move(E))); |
| 909 | return 1; |
| 910 | } |
| 911 | auto OS = std::move(OSOrErr.get()); |
| 912 | |
Sean Eveson | ea9dcee | 2017-10-04 08:54:37 +0000 | [diff] [blame] | 913 | bool ShowTitle = ViewOpts.hasOutputDirectory(); |
Sean Eveson | fa8ef35 | 2017-09-28 10:07:30 +0000 | [diff] [blame] | 914 | for (const auto *Function : Functions) { |
| 915 | auto FunctionView = createFunctionView(*Function, *Coverage); |
| 916 | if (!FunctionView) { |
| 917 | warning("Could not read coverage for '" + Function->Name + "'."); |
| 918 | continue; |
| 919 | } |
| 920 | FunctionView->print(*OS.get(), /*WholeFile=*/false, |
| 921 | /*ShowSourceName=*/true, ShowTitle); |
| 922 | ShowTitle = false; |
| 923 | } |
| 924 | |
| 925 | Printer->closeViewFile(std::move(OS)); |
| 926 | } |
| 927 | return 0; |
| 928 | } |
| 929 | |
| 930 | // Show files |
| 931 | bool ShowFilenames = |
| 932 | (SourceFiles.size() != 1) || ViewOpts.hasOutputDirectory() || |
| 933 | (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML); |
| 934 | |
Max Moroz | cc254ba | 2018-01-05 16:15:07 +0000 | [diff] [blame] | 935 | auto NumThreads = ViewOpts.NumThreads; |
| 936 | |
Vedant Kumar | 7fa7510 | 2017-07-11 01:23:29 +0000 | [diff] [blame] | 937 | // If NumThreads is not specified, auto-detect a good default. |
| 938 | if (NumThreads == 0) |
| 939 | NumThreads = |
| 940 | std::max(1U, std::min(llvm::heavyweight_hardware_concurrency(), |
| 941 | unsigned(SourceFiles.size()))); |
| 942 | |
| 943 | if (!ViewOpts.hasOutputDirectory() || NumThreads == 1) { |
Vedant Kumar | 6fd94bf | 2016-10-19 17:55:44 +0000 | [diff] [blame] | 944 | for (const std::string &SourceFile : SourceFiles) |
| 945 | writeSourceFileView(SourceFile, Coverage.get(), Printer.get(), |
| 946 | ShowFilenames); |
| 947 | } else { |
| 948 | // In -output-dir mode, it's safe to use multiple threads to print files. |
Vedant Kumar | 7fa7510 | 2017-07-11 01:23:29 +0000 | [diff] [blame] | 949 | ThreadPool Pool(NumThreads); |
Vedant Kumar | 6fd94bf | 2016-10-19 17:55:44 +0000 | [diff] [blame] | 950 | for (const std::string &SourceFile : SourceFiles) |
| 951 | Pool.async(&CodeCoverageTool::writeSourceFileView, this, SourceFile, |
| 952 | Coverage.get(), Printer.get(), ShowFilenames); |
| 953 | Pool.wait(); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 954 | } |
| 955 | |
| 956 | return 0; |
| 957 | } |
| 958 | |
Max Moroz | 1ef3a77 | 2018-01-04 19:33:29 +0000 | [diff] [blame] | 959 | int CodeCoverageTool::doReport(int argc, const char **argv, |
| 960 | CommandLineParserType commandLineParser) { |
Vedant Kumar | 62eb0fd | 2017-02-05 20:11:08 +0000 | [diff] [blame] | 961 | cl::opt<bool> ShowFunctionSummaries( |
| 962 | "show-functions", cl::Optional, cl::init(false), |
| 963 | cl::desc("Show coverage summaries for each function")); |
| 964 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 965 | auto Err = commandLineParser(argc, argv); |
| 966 | if (Err) |
| 967 | return Err; |
| 968 | |
Vedant Kumar | 431359a | 2017-02-28 16:57:28 +0000 | [diff] [blame] | 969 | if (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML) { |
Vedant Kumar | 4c01092 | 2016-07-06 21:44:05 +0000 | [diff] [blame] | 970 | error("HTML output for summary reports is not yet supported."); |
Vedant Kumar | 431359a | 2017-02-28 16:57:28 +0000 | [diff] [blame] | 971 | return 1; |
| 972 | } |
Vedant Kumar | 4c01092 | 2016-07-06 21:44:05 +0000 | [diff] [blame] | 973 | |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 974 | auto Coverage = load(); |
| 975 | if (!Coverage) |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 976 | return 1; |
| 977 | |
Vedant Kumar | 702bb9d | 2016-09-06 22:45:57 +0000 | [diff] [blame] | 978 | CoverageReport Report(ViewOpts, *Coverage.get()); |
Vedant Kumar | feb3f52 | 2017-09-25 23:10:03 +0000 | [diff] [blame] | 979 | if (!ShowFunctionSummaries) { |
Max Moroz | 4a4bfa4 | 2017-10-13 14:44:51 +0000 | [diff] [blame] | 980 | if (SourceFiles.empty()) |
Max Moroz | 4220f89 | 2018-04-09 15:20:35 +0000 | [diff] [blame] | 981 | Report.renderFileReports(llvm::outs(), IgnoreFilenameFilters); |
Max Moroz | 4a4bfa4 | 2017-10-13 14:44:51 +0000 | [diff] [blame] | 982 | else |
| 983 | Report.renderFileReports(llvm::outs(), SourceFiles); |
Vedant Kumar | feb3f52 | 2017-09-25 23:10:03 +0000 | [diff] [blame] | 984 | } else { |
| 985 | if (SourceFiles.empty()) { |
| 986 | error("Source files must be specified when -show-functions=true is " |
| 987 | "specified"); |
| 988 | return 1; |
| 989 | } |
| 990 | |
Vedant Kumar | f2b067c | 2017-02-05 20:11:03 +0000 | [diff] [blame] | 991 | Report.renderFunctionReports(SourceFiles, DC, llvm::outs()); |
Vedant Kumar | feb3f52 | 2017-09-25 23:10:03 +0000 | [diff] [blame] | 992 | } |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 993 | return 0; |
| 994 | } |
| 995 | |
Max Moroz | 1ef3a77 | 2018-01-04 19:33:29 +0000 | [diff] [blame] | 996 | int CodeCoverageTool::doExport(int argc, const char **argv, |
| 997 | CommandLineParserType commandLineParser) { |
Vedant Kumar | 7101d73 | 2016-07-26 22:50:58 +0000 | [diff] [blame] | 998 | |
| 999 | auto Err = commandLineParser(argc, argv); |
| 1000 | if (Err) |
| 1001 | return Err; |
| 1002 | |
Vedant Kumar | 431359a | 2017-02-28 16:57:28 +0000 | [diff] [blame] | 1003 | if (ViewOpts.Format != CoverageViewOptions::OutputFormat::Text) { |
| 1004 | error("Coverage data can only be exported as textual JSON."); |
| 1005 | return 1; |
| 1006 | } |
| 1007 | |
Vedant Kumar | 7101d73 | 2016-07-26 22:50:58 +0000 | [diff] [blame] | 1008 | auto Coverage = load(); |
| 1009 | if (!Coverage) { |
| 1010 | error("Could not load coverage information"); |
| 1011 | return 1; |
| 1012 | } |
| 1013 | |
Max Moroz | 1ef3a77 | 2018-01-04 19:33:29 +0000 | [diff] [blame] | 1014 | auto Exporter = CoverageExporterJson(*Coverage.get(), ViewOpts, outs()); |
| 1015 | |
| 1016 | if (SourceFiles.empty()) |
Max Moroz | 4220f89 | 2018-04-09 15:20:35 +0000 | [diff] [blame] | 1017 | Exporter.renderRoot(IgnoreFilenameFilters); |
Max Moroz | 1ef3a77 | 2018-01-04 19:33:29 +0000 | [diff] [blame] | 1018 | else |
| 1019 | Exporter.renderRoot(SourceFiles); |
Vedant Kumar | 7101d73 | 2016-07-26 22:50:58 +0000 | [diff] [blame] | 1020 | |
| 1021 | return 0; |
| 1022 | } |
| 1023 | |
Justin Bogner | d249a3b | 2014-10-30 20:57:49 +0000 | [diff] [blame] | 1024 | int showMain(int argc, const char *argv[]) { |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 1025 | CodeCoverageTool Tool; |
| 1026 | return Tool.run(CodeCoverageTool::Show, argc, argv); |
| 1027 | } |
| 1028 | |
Justin Bogner | d249a3b | 2014-10-30 20:57:49 +0000 | [diff] [blame] | 1029 | int reportMain(int argc, const char *argv[]) { |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 1030 | CodeCoverageTool Tool; |
| 1031 | return Tool.run(CodeCoverageTool::Report, argc, argv); |
| 1032 | } |
Vedant Kumar | 7101d73 | 2016-07-26 22:50:58 +0000 | [diff] [blame] | 1033 | |
| 1034 | int exportMain(int argc, const char *argv[]) { |
| 1035 | CodeCoverageTool Tool; |
| 1036 | return Tool.run(CodeCoverageTool::Export, argc, argv); |
| 1037 | } |