Yuchen Wu | 298c765 | 2013-12-05 22:02:29 +0000 | [diff] [blame] | 1 | //===- GCOV.cpp - LLVM coverage tool --------------------------------------===// |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 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 | // |
NAKAMURA Takumi | 12e90cb | 2013-11-14 11:44:58 +0000 | [diff] [blame] | 10 | // GCOV implements the interface to read and write coverage files that use |
Devang Patel | 58c6200 | 2011-10-04 17:24:48 +0000 | [diff] [blame] | 11 | // 'gcov' format. |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 12 | // |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 13 | //===----------------------------------------------------------------------===// |
| 14 | |
David Blaikie | 7711c31 | 2017-11-03 20:57:10 +0000 | [diff] [blame] | 15 | #include "llvm/ProfileData/GCOV.h" |
Devang Patel | 7a50202 | 2011-09-29 16:46:47 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/STLExtras.h" |
Nico Weber | 0f38c60 | 2018-04-30 14:59:11 +0000 | [diff] [blame] | 17 | #include "llvm/Config/llvm-config.h" |
Justin Bogner | d1cf804 | 2014-02-04 21:03:17 +0000 | [diff] [blame] | 18 | #include "llvm/Support/Debug.h" |
Justin Bogner | 01c0550 | 2014-02-04 10:45:02 +0000 | [diff] [blame] | 19 | #include "llvm/Support/FileSystem.h" |
Justin Bogner | d1cf804 | 2014-02-04 21:03:17 +0000 | [diff] [blame] | 20 | #include "llvm/Support/Format.h" |
Justin Bogner | 01c0550 | 2014-02-04 10:45:02 +0000 | [diff] [blame] | 21 | #include "llvm/Support/Path.h" |
Benjamin Kramer | 1bfcd1f | 2015-03-23 19:32:43 +0000 | [diff] [blame] | 22 | #include "llvm/Support/raw_ostream.h" |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 23 | #include <algorithm> |
Rafael Espindola | d5132f9 | 2014-06-12 17:38:55 +0000 | [diff] [blame] | 24 | #include <system_error> |
Eugene Zelenko | 380d47d | 2016-02-02 18:20:45 +0000 | [diff] [blame] | 25 | |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 26 | using namespace llvm; |
| 27 | |
| 28 | //===----------------------------------------------------------------------===// |
| 29 | // GCOVFile implementation. |
| 30 | |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 31 | /// readGCNO - Read GCNO buffer. |
| 32 | bool GCOVFile::readGCNO(GCOVBuffer &Buffer) { |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 33 | if (!Buffer.readGCNOFormat()) |
| 34 | return false; |
| 35 | if (!Buffer.readGCOVVersion(Version)) |
| 36 | return false; |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 37 | |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 38 | if (!Buffer.readInt(Checksum)) |
| 39 | return false; |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 40 | while (true) { |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 41 | if (!Buffer.readFunctionTag()) |
| 42 | break; |
David Blaikie | e1c0863 | 2014-04-21 21:40:16 +0000 | [diff] [blame] | 43 | auto GFun = make_unique<GCOVFunction>(*this); |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 44 | if (!GFun->readGCNO(Buffer, Version)) |
| 45 | return false; |
David Blaikie | e1c0863 | 2014-04-21 21:40:16 +0000 | [diff] [blame] | 46 | Functions.push_back(std::move(GFun)); |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 47 | } |
| 48 | |
Yuchen Wu | 9bd2991 | 2013-12-04 05:07:36 +0000 | [diff] [blame] | 49 | GCNOInitialized = true; |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 50 | return true; |
Devang Patel | 0066f92 | 2011-09-29 17:06:40 +0000 | [diff] [blame] | 51 | } |
| 52 | |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 53 | /// readGCDA - Read GCDA buffer. It is required that readGCDA() can only be |
| 54 | /// called after readGCNO(). |
| 55 | bool GCOVFile::readGCDA(GCOVBuffer &Buffer) { |
Yuchen Wu | 9bd2991 | 2013-12-04 05:07:36 +0000 | [diff] [blame] | 56 | assert(GCNOInitialized && "readGCDA() can only be called after readGCNO()"); |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 57 | if (!Buffer.readGCDAFormat()) |
| 58 | return false; |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 59 | GCOV::GCOVVersion GCDAVersion; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 60 | if (!Buffer.readGCOVVersion(GCDAVersion)) |
| 61 | return false; |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 62 | if (Version != GCDAVersion) { |
| 63 | errs() << "GCOV versions do not match.\n"; |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 64 | return false; |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 65 | } |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 66 | |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 67 | uint32_t GCDAChecksum; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 68 | if (!Buffer.readInt(GCDAChecksum)) |
| 69 | return false; |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 70 | if (Checksum != GCDAChecksum) { |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 71 | errs() << "File checksums do not match: " << Checksum |
| 72 | << " != " << GCDAChecksum << ".\n"; |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 73 | return false; |
| 74 | } |
| 75 | for (size_t i = 0, e = Functions.size(); i < e; ++i) { |
| 76 | if (!Buffer.readFunctionTag()) { |
| 77 | errs() << "Unexpected number of functions.\n"; |
Yuchen Wu | d23c759 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 78 | return false; |
| 79 | } |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 80 | if (!Functions[i]->readGCDA(Buffer, Version)) |
| 81 | return false; |
| 82 | } |
| 83 | if (Buffer.readObjectTag()) { |
| 84 | uint32_t Length; |
| 85 | uint32_t Dummy; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 86 | if (!Buffer.readInt(Length)) |
| 87 | return false; |
| 88 | if (!Buffer.readInt(Dummy)) |
| 89 | return false; // checksum |
| 90 | if (!Buffer.readInt(Dummy)) |
| 91 | return false; // num |
| 92 | if (!Buffer.readInt(RunCount)) |
| 93 | return false; |
| 94 | Buffer.advanceCursor(Length - 3); |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 95 | } |
| 96 | while (Buffer.readProgramTag()) { |
| 97 | uint32_t Length; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 98 | if (!Buffer.readInt(Length)) |
| 99 | return false; |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 100 | Buffer.advanceCursor(Length); |
| 101 | ++ProgramCount; |
Yuchen Wu | 76fa4d6 | 2013-10-25 02:22:21 +0000 | [diff] [blame] | 102 | } |
| 103 | |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 104 | return true; |
| 105 | } |
| 106 | |
Matthias Braun | 88d2075 | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 107 | void GCOVFile::print(raw_ostream &OS) const { |
| 108 | for (const auto &FPtr : Functions) |
| 109 | FPtr->print(OS); |
| 110 | } |
| 111 | |
Aaron Ballman | 1d03d38 | 2017-10-15 14:32:27 +0000 | [diff] [blame] | 112 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Yuchen Wu | 81e3828 | 2013-10-25 02:22:24 +0000 | [diff] [blame] | 113 | /// dump - Dump GCOVFile content to dbgs() for debugging purposes. |
Calixte Denizet | 24b5a53 | 2018-09-20 16:09:30 +0000 | [diff] [blame] | 114 | LLVM_DUMP_METHOD void GCOVFile::dump() const { print(dbgs()); } |
Matthias Braun | 88d2075 | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 115 | #endif |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 116 | |
| 117 | /// collectLineCounts - Collect line counts. This must be used after |
| 118 | /// reading .gcno and .gcda files. |
| 119 | void GCOVFile::collectLineCounts(FileInfo &FI) { |
David Blaikie | e1c0863 | 2014-04-21 21:40:16 +0000 | [diff] [blame] | 120 | for (const auto &FPtr : Functions) |
| 121 | FPtr->collectLineCounts(FI); |
Yuchen Wu | e85959c | 2013-11-05 01:11:58 +0000 | [diff] [blame] | 122 | FI.setRunCount(RunCount); |
Yuchen Wu | 76fa4d6 | 2013-10-25 02:22:21 +0000 | [diff] [blame] | 123 | FI.setProgramCount(ProgramCount); |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | //===----------------------------------------------------------------------===// |
| 127 | // GCOVFunction implementation. |
| 128 | |
Yuchen Wu | c4b184e | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 129 | /// readGCNO - Read a function from the GCNO buffer. Return false if an error |
| 130 | /// occurs. |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 131 | bool GCOVFunction::readGCNO(GCOVBuffer &Buff, GCOV::GCOVVersion Version) { |
Yuchen Wu | dbb51ff | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 132 | uint32_t Dummy; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 133 | if (!Buff.readInt(Dummy)) |
| 134 | return false; // Function header length |
| 135 | if (!Buff.readInt(Ident)) |
| 136 | return false; |
| 137 | if (!Buff.readInt(Checksum)) |
| 138 | return false; |
Yuchen Wu | 45a5b27 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 139 | if (Version != GCOV::V402) { |
| 140 | uint32_t CfgChecksum; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 141 | if (!Buff.readInt(CfgChecksum)) |
| 142 | return false; |
Yuchen Wu | 45a5b27 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 143 | if (Parent.getChecksum() != CfgChecksum) { |
| 144 | errs() << "File checksums do not match: " << Parent.getChecksum() |
| 145 | << " != " << CfgChecksum << " in (" << Name << ").\n"; |
| 146 | return false; |
| 147 | } |
| 148 | } |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 149 | if (!Buff.readString(Name)) |
| 150 | return false; |
| 151 | if (!Buff.readString(Filename)) |
| 152 | return false; |
| 153 | if (!Buff.readInt(LineNumber)) |
| 154 | return false; |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 155 | |
| 156 | // read blocks. |
Yuchen Wu | dbb51ff | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 157 | if (!Buff.readBlockTag()) { |
| 158 | errs() << "Block tag not found.\n"; |
| 159 | return false; |
| 160 | } |
| 161 | uint32_t BlockCount; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 162 | if (!Buff.readInt(BlockCount)) |
| 163 | return false; |
Bob Wilson | 67fa539 | 2013-10-22 20:02:36 +0000 | [diff] [blame] | 164 | for (uint32_t i = 0, e = BlockCount; i != e; ++i) { |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 165 | if (!Buff.readInt(Dummy)) |
| 166 | return false; // Block flags; |
David Blaikie | e1c0863 | 2014-04-21 21:40:16 +0000 | [diff] [blame] | 167 | Blocks.push_back(make_unique<GCOVBlock>(*this, i)); |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | // read edges. |
| 171 | while (Buff.readEdgeTag()) { |
Yuchen Wu | dbb51ff | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 172 | uint32_t EdgeCount; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 173 | if (!Buff.readInt(EdgeCount)) |
| 174 | return false; |
Yuchen Wu | dbb51ff | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 175 | EdgeCount = (EdgeCount - 1) / 2; |
| 176 | uint32_t BlockNo; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 177 | if (!Buff.readInt(BlockNo)) |
| 178 | return false; |
Yuchen Wu | dbb51ff | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 179 | if (BlockNo >= BlockCount) { |
Yuchen Wu | 7d3a11f | 2013-12-05 22:02:33 +0000 | [diff] [blame] | 180 | errs() << "Unexpected block number: " << BlockNo << " (in " << Name |
| 181 | << ").\n"; |
Yuchen Wu | dbb51ff | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 182 | return false; |
| 183 | } |
Bob Wilson | 67fa539 | 2013-10-22 20:02:36 +0000 | [diff] [blame] | 184 | for (uint32_t i = 0, e = EdgeCount; i != e; ++i) { |
Yuchen Wu | dbb51ff | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 185 | uint32_t Dst; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 186 | if (!Buff.readInt(Dst)) |
| 187 | return false; |
David Blaikie | e1c0863 | 2014-04-21 21:40:16 +0000 | [diff] [blame] | 188 | Edges.push_back(make_unique<GCOVEdge>(*Blocks[BlockNo], *Blocks[Dst])); |
| 189 | GCOVEdge *Edge = Edges.back().get(); |
Yuchen Wu | 2331c9f | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 190 | Blocks[BlockNo]->addDstEdge(Edge); |
| 191 | Blocks[Dst]->addSrcEdge(Edge); |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 192 | if (!Buff.readInt(Dummy)) |
| 193 | return false; // Edge flag |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 194 | } |
| 195 | } |
| 196 | |
| 197 | // read line table. |
| 198 | while (Buff.readLineTag()) { |
Yuchen Wu | dbb51ff | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 199 | uint32_t LineTableLength; |
Justin Bogner | 688567e | 2014-05-02 20:01:24 +0000 | [diff] [blame] | 200 | // Read the length of this line table. |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 201 | if (!Buff.readInt(LineTableLength)) |
| 202 | return false; |
| 203 | uint32_t EndPos = Buff.getCursor() + LineTableLength * 4; |
Yuchen Wu | dbb51ff | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 204 | uint32_t BlockNo; |
Justin Bogner | 688567e | 2014-05-02 20:01:24 +0000 | [diff] [blame] | 205 | // Read the block number this table is associated with. |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 206 | if (!Buff.readInt(BlockNo)) |
| 207 | return false; |
Yuchen Wu | dbb51ff | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 208 | if (BlockNo >= BlockCount) { |
Yuchen Wu | 7d3a11f | 2013-12-05 22:02:33 +0000 | [diff] [blame] | 209 | errs() << "Unexpected block number: " << BlockNo << " (in " << Name |
| 210 | << ").\n"; |
Yuchen Wu | dbb51ff | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 211 | return false; |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 212 | } |
David Blaikie | e1c0863 | 2014-04-21 21:40:16 +0000 | [diff] [blame] | 213 | GCOVBlock &Block = *Blocks[BlockNo]; |
Justin Bogner | 688567e | 2014-05-02 20:01:24 +0000 | [diff] [blame] | 214 | // Read the word that pads the beginning of the line table. This may be a |
| 215 | // flag of some sort, but seems to always be zero. |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 216 | if (!Buff.readInt(Dummy)) |
| 217 | return false; |
Justin Bogner | 688567e | 2014-05-02 20:01:24 +0000 | [diff] [blame] | 218 | |
| 219 | // Line information starts here and continues up until the last word. |
| 220 | if (Buff.getCursor() != (EndPos - sizeof(uint32_t))) { |
Yuchen Wu | 131a764 | 2013-11-14 00:32:00 +0000 | [diff] [blame] | 221 | StringRef F; |
Justin Bogner | 688567e | 2014-05-02 20:01:24 +0000 | [diff] [blame] | 222 | // Read the source file name. |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 223 | if (!Buff.readString(F)) |
| 224 | return false; |
Yuchen Wu | 7d3a11f | 2013-12-05 22:02:33 +0000 | [diff] [blame] | 225 | if (Filename != F) { |
| 226 | errs() << "Multiple sources for a single basic block: " << Filename |
| 227 | << " != " << F << " (in " << Name << ").\n"; |
Yuchen Wu | 131a764 | 2013-11-14 00:32:00 +0000 | [diff] [blame] | 228 | return false; |
| 229 | } |
Justin Bogner | 688567e | 2014-05-02 20:01:24 +0000 | [diff] [blame] | 230 | // Read lines up to, but not including, the null terminator. |
| 231 | while (Buff.getCursor() < (EndPos - 2 * sizeof(uint32_t))) { |
Yuchen Wu | dbb51ff | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 232 | uint32_t Line; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 233 | if (!Buff.readInt(Line)) |
| 234 | return false; |
Justin Bogner | 688567e | 2014-05-02 20:01:24 +0000 | [diff] [blame] | 235 | // Line 0 means this instruction was injected by the compiler. Skip it. |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 236 | if (!Line) |
| 237 | continue; |
David Blaikie | e1c0863 | 2014-04-21 21:40:16 +0000 | [diff] [blame] | 238 | Block.addLine(Line); |
Yuchen Wu | dbb51ff | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 239 | } |
Justin Bogner | 688567e | 2014-05-02 20:01:24 +0000 | [diff] [blame] | 240 | // Read the null terminator. |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 241 | if (!Buff.readInt(Dummy)) |
| 242 | return false; |
Yuchen Wu | dbb51ff | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 243 | } |
Justin Bogner | 688567e | 2014-05-02 20:01:24 +0000 | [diff] [blame] | 244 | // The last word is either a flag or padding, it isn't clear which. Skip |
| 245 | // over it. |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 246 | if (!Buff.readInt(Dummy)) |
| 247 | return false; |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 248 | } |
| 249 | return true; |
| 250 | } |
| 251 | |
Yuchen Wu | c4b184e | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 252 | /// readGCDA - Read a function from the GCDA buffer. Return false if an error |
| 253 | /// occurs. |
Yuchen Wu | 812ad83 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 254 | bool GCOVFunction::readGCDA(GCOVBuffer &Buff, GCOV::GCOVVersion Version) { |
Justin Bogner | eb833ba | 2016-02-08 22:49:40 +0000 | [diff] [blame] | 255 | uint32_t HeaderLength; |
| 256 | if (!Buff.readInt(HeaderLength)) |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 257 | return false; // Function header length |
Daniel Jasper | bfbf8d3 | 2013-12-04 08:57:17 +0000 | [diff] [blame] | 258 | |
Justin Bogner | eb833ba | 2016-02-08 22:49:40 +0000 | [diff] [blame] | 259 | uint64_t EndPos = Buff.getCursor() + HeaderLength * sizeof(uint32_t); |
| 260 | |
Yuchen Wu | 45a5b27 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 261 | uint32_t GCDAIdent; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 262 | if (!Buff.readInt(GCDAIdent)) |
| 263 | return false; |
Yuchen Wu | 45a5b27 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 264 | if (Ident != GCDAIdent) { |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 265 | errs() << "Function identifiers do not match: " << Ident |
| 266 | << " != " << GCDAIdent << " (in " << Name << ").\n"; |
Yuchen Wu | 45a5b27 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 267 | return false; |
| 268 | } |
Yuchen Wu | c4b184e | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 269 | |
Daniel Jasper | bfbf8d3 | 2013-12-04 08:57:17 +0000 | [diff] [blame] | 270 | uint32_t GCDAChecksum; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 271 | if (!Buff.readInt(GCDAChecksum)) |
| 272 | return false; |
Daniel Jasper | bfbf8d3 | 2013-12-04 08:57:17 +0000 | [diff] [blame] | 273 | if (Checksum != GCDAChecksum) { |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 274 | errs() << "Function checksums do not match: " << Checksum |
| 275 | << " != " << GCDAChecksum << " (in " << Name << ").\n"; |
Daniel Jasper | bfbf8d3 | 2013-12-04 08:57:17 +0000 | [diff] [blame] | 276 | return false; |
| 277 | } |
Yuchen Wu | 45a5b27 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 278 | |
| 279 | uint32_t CfgChecksum; |
| 280 | if (Version != GCOV::V402) { |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 281 | if (!Buff.readInt(CfgChecksum)) |
| 282 | return false; |
Yuchen Wu | 45a5b27 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 283 | if (Parent.getChecksum() != CfgChecksum) { |
| 284 | errs() << "File checksums do not match: " << Parent.getChecksum() |
| 285 | << " != " << CfgChecksum << " (in " << Name << ").\n"; |
| 286 | return false; |
| 287 | } |
| 288 | } |
| 289 | |
Justin Bogner | eb833ba | 2016-02-08 22:49:40 +0000 | [diff] [blame] | 290 | if (Buff.getCursor() < EndPos) { |
| 291 | StringRef GCDAName; |
| 292 | if (!Buff.readString(GCDAName)) |
| 293 | return false; |
| 294 | if (Name != GCDAName) { |
| 295 | errs() << "Function names do not match: " << Name << " != " << GCDAName |
| 296 | << ".\n"; |
| 297 | return false; |
| 298 | } |
Yuchen Wu | 45a5b27 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 299 | } |
Yuchen Wu | c4b184e | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 300 | |
| 301 | if (!Buff.readArcTag()) { |
Yuchen Wu | 45a5b27 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 302 | errs() << "Arc tag not found (in " << Name << ").\n"; |
Yuchen Wu | c4b184e | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 303 | return false; |
| 304 | } |
Yuchen Wu | 2331c9f | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 305 | |
Yuchen Wu | c4b184e | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 306 | uint32_t Count; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 307 | if (!Buff.readInt(Count)) |
| 308 | return false; |
Yuchen Wu | c4b184e | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 309 | Count /= 2; |
| 310 | |
| 311 | // This for loop adds the counts for each block. A second nested loop is |
| 312 | // required to combine the edge counts that are contained in the GCDA file. |
Yuchen Wu | 2331c9f | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 313 | for (uint32_t BlockNo = 0; Count > 0; ++BlockNo) { |
| 314 | // The last block is always reserved for exit block |
Justin Bogner | bdd2212 | 2015-03-17 00:18:51 +0000 | [diff] [blame] | 315 | if (BlockNo >= Blocks.size()) { |
Yuchen Wu | 45a5b27 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 316 | errs() << "Unexpected number of edges (in " << Name << ").\n"; |
Yuchen Wu | c4b184e | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 317 | return false; |
| 318 | } |
Justin Bogner | bdd2212 | 2015-03-17 00:18:51 +0000 | [diff] [blame] | 319 | if (BlockNo == Blocks.size() - 1) |
| 320 | errs() << "(" << Name << ") has arcs from exit block.\n"; |
Yuchen Wu | 2331c9f | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 321 | GCOVBlock &Block = *Blocks[BlockNo]; |
| 322 | for (size_t EdgeNo = 0, End = Block.getNumDstEdges(); EdgeNo < End; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 323 | ++EdgeNo) { |
Yuchen Wu | c4b184e | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 324 | if (Count == 0) { |
Yuchen Wu | 45a5b27 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 325 | errs() << "Unexpected number of edges (in " << Name << ").\n"; |
Yuchen Wu | c4b184e | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 326 | return false; |
| 327 | } |
| 328 | uint64_t ArcCount; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 329 | if (!Buff.readInt64(ArcCount)) |
| 330 | return false; |
Yuchen Wu | 2331c9f | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 331 | Block.addCount(EdgeNo, ArcCount); |
Yuchen Wu | c4b184e | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 332 | --Count; |
| 333 | } |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 334 | Block.sortDstEdges(); |
Yuchen Wu | c4b184e | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 335 | } |
| 336 | return true; |
| 337 | } |
| 338 | |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 339 | /// getEntryCount - Get the number of times the function was called by |
| 340 | /// retrieving the entry block's count. |
| 341 | uint64_t GCOVFunction::getEntryCount() const { |
| 342 | return Blocks.front()->getCount(); |
| 343 | } |
| 344 | |
| 345 | /// getExitCount - Get the number of times the function returned by retrieving |
| 346 | /// the exit block's count. |
| 347 | uint64_t GCOVFunction::getExitCount() const { |
| 348 | return Blocks.back()->getCount(); |
| 349 | } |
| 350 | |
Matthias Braun | 88d2075 | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 351 | void GCOVFunction::print(raw_ostream &OS) const { |
| 352 | OS << "===== " << Name << " (" << Ident << ") @ " << Filename << ":" |
| 353 | << LineNumber << "\n"; |
| 354 | for (const auto &Block : Blocks) |
| 355 | Block->print(OS); |
| 356 | } |
| 357 | |
Aaron Ballman | 1d03d38 | 2017-10-15 14:32:27 +0000 | [diff] [blame] | 358 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Yuchen Wu | 81e3828 | 2013-10-25 02:22:24 +0000 | [diff] [blame] | 359 | /// dump - Dump GCOVFunction content to dbgs() for debugging purposes. |
Calixte Denizet | 24b5a53 | 2018-09-20 16:09:30 +0000 | [diff] [blame] | 360 | LLVM_DUMP_METHOD void GCOVFunction::dump() const { print(dbgs()); } |
Matthias Braun | 88d2075 | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 361 | #endif |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 362 | |
| 363 | /// collectLineCounts - Collect line counts. This must be used after |
| 364 | /// reading .gcno and .gcda files. |
| 365 | void GCOVFunction::collectLineCounts(FileInfo &FI) { |
Justin Bogner | 2a6873f | 2014-03-26 22:03:06 +0000 | [diff] [blame] | 366 | // If the line number is zero, this is a function that doesn't actually appear |
| 367 | // in the source file, so there isn't anything we can do with it. |
| 368 | if (LineNumber == 0) |
| 369 | return; |
| 370 | |
David Blaikie | e1c0863 | 2014-04-21 21:40:16 +0000 | [diff] [blame] | 371 | for (const auto &Block : Blocks) |
| 372 | Block->collectLineCounts(FI); |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 373 | FI.addFunctionLine(Filename, LineNumber, this); |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | //===----------------------------------------------------------------------===// |
| 377 | // GCOVBlock implementation. |
| 378 | |
| 379 | /// ~GCOVBlock - Delete GCOVBlock and its content. |
| 380 | GCOVBlock::~GCOVBlock() { |
Yuchen Wu | 2331c9f | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 381 | SrcEdges.clear(); |
| 382 | DstEdges.clear(); |
Yuchen Wu | 131a764 | 2013-11-14 00:32:00 +0000 | [diff] [blame] | 383 | Lines.clear(); |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 384 | } |
| 385 | |
Yuchen Wu | 2331c9f | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 386 | /// addCount - Add to block counter while storing the edge count. If the |
| 387 | /// destination has no outgoing edges, also update that block's count too. |
| 388 | void GCOVBlock::addCount(size_t DstEdgeNo, uint64_t N) { |
| 389 | assert(DstEdgeNo < DstEdges.size()); // up to caller to ensure EdgeNo is valid |
| 390 | DstEdges[DstEdgeNo]->Count = N; |
| 391 | Counter += N; |
David Blaikie | e1c0863 | 2014-04-21 21:40:16 +0000 | [diff] [blame] | 392 | if (!DstEdges[DstEdgeNo]->Dst.getNumDstEdges()) |
| 393 | DstEdges[DstEdgeNo]->Dst.Counter += N; |
Yuchen Wu | 2331c9f | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 394 | } |
| 395 | |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 396 | /// sortDstEdges - Sort destination edges by block number, nop if already |
| 397 | /// sorted. This is required for printing branch info in the correct order. |
| 398 | void GCOVBlock::sortDstEdges() { |
| 399 | if (!DstEdgesAreSorted) { |
| 400 | SortDstEdgesFunctor SortEdges; |
| 401 | std::stable_sort(DstEdges.begin(), DstEdges.end(), SortEdges); |
| 402 | } |
| 403 | } |
| 404 | |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 405 | /// collectLineCounts - Collect line counts. This must be used after |
| 406 | /// reading .gcno and .gcda files. |
| 407 | void GCOVBlock::collectLineCounts(FileInfo &FI) { |
Justin Bogner | 798383b | 2015-01-23 22:57:02 +0000 | [diff] [blame] | 408 | for (uint32_t N : Lines) |
| 409 | FI.addBlockLine(Parent.getFilename(), N, this); |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 410 | } |
| 411 | |
Matthias Braun | 88d2075 | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 412 | void GCOVBlock::print(raw_ostream &OS) const { |
| 413 | OS << "Block : " << Number << " Counter : " << Counter << "\n"; |
Yuchen Wu | 2331c9f | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 414 | if (!SrcEdges.empty()) { |
Matthias Braun | 88d2075 | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 415 | OS << "\tSource Edges : "; |
Justin Bogner | 798383b | 2015-01-23 22:57:02 +0000 | [diff] [blame] | 416 | for (const GCOVEdge *Edge : SrcEdges) |
Matthias Braun | 88d2075 | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 417 | OS << Edge->Src.Number << " (" << Edge->Count << "), "; |
| 418 | OS << "\n"; |
Yuchen Wu | 2331c9f | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 419 | } |
| 420 | if (!DstEdges.empty()) { |
Matthias Braun | 88d2075 | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 421 | OS << "\tDestination Edges : "; |
Justin Bogner | 798383b | 2015-01-23 22:57:02 +0000 | [diff] [blame] | 422 | for (const GCOVEdge *Edge : DstEdges) |
Matthias Braun | 88d2075 | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 423 | OS << Edge->Dst.Number << " (" << Edge->Count << "), "; |
| 424 | OS << "\n"; |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 425 | } |
| 426 | if (!Lines.empty()) { |
Matthias Braun | 88d2075 | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 427 | OS << "\tLines : "; |
Justin Bogner | 798383b | 2015-01-23 22:57:02 +0000 | [diff] [blame] | 428 | for (uint32_t N : Lines) |
Matthias Braun | 88d2075 | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 429 | OS << (N) << ","; |
| 430 | OS << "\n"; |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 431 | } |
| 432 | } |
| 433 | |
Aaron Ballman | 1d03d38 | 2017-10-15 14:32:27 +0000 | [diff] [blame] | 434 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Matthias Braun | 88d2075 | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 435 | /// dump - Dump GCOVBlock content to dbgs() for debugging purposes. |
Calixte Denizet | 24b5a53 | 2018-09-20 16:09:30 +0000 | [diff] [blame] | 436 | LLVM_DUMP_METHOD void GCOVBlock::dump() const { print(dbgs()); } |
Matthias Braun | 88d2075 | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 437 | #endif |
| 438 | |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 439 | //===----------------------------------------------------------------------===// |
Calixte Denizet | 24b5a53 | 2018-09-20 16:09:30 +0000 | [diff] [blame] | 440 | // Cycles detection |
| 441 | // |
| 442 | // The algorithm in GCC is based on the algorihtm by Hawick & James: |
| 443 | // "Enumerating Circuits and Loops in Graphs with Self-Arcs and Multiple-Arcs" |
| 444 | // http://complexity.massey.ac.nz/cstn/013/cstn-013.pdf. |
| 445 | |
| 446 | /// Get the count for the detected cycle. |
| 447 | uint64_t GCOVBlock::getCycleCount(const Edges &Path) { |
| 448 | uint64_t CycleCount = std::numeric_limits<uint64_t>::max(); |
| 449 | for (auto E : Path) { |
| 450 | CycleCount = std::min(E->CyclesCount, CycleCount); |
| 451 | } |
| 452 | for (auto E : Path) { |
| 453 | E->CyclesCount -= CycleCount; |
| 454 | } |
| 455 | return CycleCount; |
| 456 | } |
| 457 | |
| 458 | /// Unblock a vertex previously marked as blocked. |
| 459 | void GCOVBlock::unblock(const GCOVBlock *U, BlockVector &Blocked, |
| 460 | BlockVectorLists &BlockLists) { |
| 461 | auto it = find(Blocked, U); |
| 462 | if (it == Blocked.end()) { |
| 463 | return; |
| 464 | } |
| 465 | |
| 466 | const size_t index = it - Blocked.begin(); |
| 467 | Blocked.erase(it); |
| 468 | |
| 469 | const BlockVector ToUnblock(BlockLists[index]); |
| 470 | BlockLists.erase(BlockLists.begin() + index); |
| 471 | for (auto GB : ToUnblock) { |
| 472 | GCOVBlock::unblock(GB, Blocked, BlockLists); |
| 473 | } |
| 474 | } |
| 475 | |
| 476 | bool GCOVBlock::lookForCircuit(const GCOVBlock *V, const GCOVBlock *Start, |
| 477 | Edges &Path, BlockVector &Blocked, |
| 478 | BlockVectorLists &BlockLists, |
| 479 | const BlockVector &Blocks, uint64_t &Count) { |
| 480 | Blocked.push_back(V); |
| 481 | BlockLists.emplace_back(BlockVector()); |
| 482 | bool FoundCircuit = false; |
| 483 | |
| 484 | for (auto E : V->dsts()) { |
| 485 | const GCOVBlock *W = &E->Dst; |
| 486 | if (W < Start || find(Blocks, W) == Blocks.end()) { |
| 487 | continue; |
| 488 | } |
| 489 | |
| 490 | Path.push_back(E); |
| 491 | |
| 492 | if (W == Start) { |
| 493 | // We've a cycle. |
| 494 | Count += GCOVBlock::getCycleCount(Path); |
| 495 | FoundCircuit = true; |
| 496 | } else if (find(Blocked, W) == Blocked.end() && // W is not blocked. |
| 497 | GCOVBlock::lookForCircuit(W, Start, Path, Blocked, BlockLists, |
| 498 | Blocks, Count)) { |
| 499 | FoundCircuit = true; |
| 500 | } |
| 501 | |
| 502 | Path.pop_back(); |
| 503 | } |
| 504 | |
| 505 | if (FoundCircuit) { |
| 506 | GCOVBlock::unblock(V, Blocked, BlockLists); |
| 507 | } else { |
| 508 | for (auto E : V->dsts()) { |
| 509 | const GCOVBlock *W = &E->Dst; |
| 510 | if (W < Start || find(Blocks, W) == Blocks.end()) { |
| 511 | continue; |
| 512 | } |
| 513 | const size_t index = find(Blocked, W) - Blocked.begin(); |
| 514 | BlockVector &List = BlockLists[index]; |
| 515 | if (find(List, V) == List.end()) { |
| 516 | List.push_back(V); |
| 517 | } |
| 518 | } |
| 519 | } |
| 520 | |
| 521 | return FoundCircuit; |
| 522 | } |
| 523 | |
| 524 | /// Get the count for the list of blocks which lie on the same line. |
| 525 | void GCOVBlock::getCyclesCount(const BlockVector &Blocks, uint64_t &Count) { |
| 526 | for (auto Block : Blocks) { |
| 527 | Edges Path; |
| 528 | BlockVector Blocked; |
| 529 | BlockVectorLists BlockLists; |
| 530 | |
| 531 | GCOVBlock::lookForCircuit(Block, Block, Path, Blocked, BlockLists, Blocks, |
| 532 | Count); |
| 533 | } |
| 534 | } |
| 535 | |
| 536 | /// Get the count for the list of blocks which lie on the same line. |
| 537 | uint64_t GCOVBlock::getLineCount(const BlockVector &Blocks) { |
| 538 | uint64_t Count = 0; |
| 539 | |
| 540 | for (auto Block : Blocks) { |
| 541 | if (Block->getNumSrcEdges() == 0) { |
| 542 | // The block has no predecessors and a non-null counter |
| 543 | // (can be the case with entry block in functions). |
| 544 | Count += Block->getCount(); |
| 545 | } else { |
| 546 | // Add counts from predecessors that are not on the same line. |
| 547 | for (auto E : Block->srcs()) { |
| 548 | const GCOVBlock *W = &E->Src; |
| 549 | if (find(Blocks, W) == Blocks.end()) { |
| 550 | Count += E->Count; |
| 551 | } |
| 552 | } |
| 553 | } |
| 554 | for (auto E : Block->dsts()) { |
| 555 | E->CyclesCount = E->Count; |
| 556 | } |
| 557 | } |
| 558 | |
| 559 | GCOVBlock::getCyclesCount(Blocks, Count); |
| 560 | |
| 561 | return Count; |
| 562 | } |
| 563 | |
| 564 | //===----------------------------------------------------------------------===// |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 565 | // FileInfo implementation. |
| 566 | |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 567 | // Safe integer division, returns 0 if numerator is 0. |
| 568 | static uint32_t safeDiv(uint64_t Numerator, uint64_t Divisor) { |
| 569 | if (!Numerator) |
| 570 | return 0; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 571 | return Numerator / Divisor; |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 572 | } |
| 573 | |
| 574 | // This custom division function mimics gcov's branch ouputs: |
| 575 | // - Round to closest whole number |
| 576 | // - Only output 0% or 100% if it's exactly that value |
| 577 | static uint32_t branchDiv(uint64_t Numerator, uint64_t Divisor) { |
| 578 | if (!Numerator) |
| 579 | return 0; |
| 580 | if (Numerator == Divisor) |
| 581 | return 100; |
| 582 | |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 583 | uint8_t Res = (Numerator * 100 + Divisor / 2) / Divisor; |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 584 | if (Res == 0) |
| 585 | return 1; |
| 586 | if (Res == 100) |
| 587 | return 99; |
| 588 | return Res; |
| 589 | } |
| 590 | |
Benjamin Kramer | cab2a09 | 2015-03-23 13:59:13 +0000 | [diff] [blame] | 591 | namespace { |
Yuchen Wu | f6358f3 | 2013-12-18 18:40:15 +0000 | [diff] [blame] | 592 | struct formatBranchInfo { |
Richard Smith | 1184005 | 2015-10-14 00:04:19 +0000 | [diff] [blame] | 593 | formatBranchInfo(const GCOV::Options &Options, uint64_t Count, uint64_t Total) |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 594 | : Options(Options), Count(Count), Total(Total) {} |
Yuchen Wu | f6358f3 | 2013-12-18 18:40:15 +0000 | [diff] [blame] | 595 | |
| 596 | void print(raw_ostream &OS) const { |
| 597 | if (!Total) |
| 598 | OS << "never executed"; |
| 599 | else if (Options.BranchCount) |
| 600 | OS << "taken " << Count; |
| 601 | else |
| 602 | OS << "taken " << branchDiv(Count, Total) << "%"; |
| 603 | } |
| 604 | |
Richard Smith | 1184005 | 2015-10-14 00:04:19 +0000 | [diff] [blame] | 605 | const GCOV::Options &Options; |
Yuchen Wu | f6358f3 | 2013-12-18 18:40:15 +0000 | [diff] [blame] | 606 | uint64_t Count; |
| 607 | uint64_t Total; |
| 608 | }; |
| 609 | |
| 610 | static raw_ostream &operator<<(raw_ostream &OS, const formatBranchInfo &FBI) { |
| 611 | FBI.print(OS); |
| 612 | return OS; |
| 613 | } |
| 614 | |
Justin Bogner | c92330c | 2014-05-07 02:11:23 +0000 | [diff] [blame] | 615 | class LineConsumer { |
| 616 | std::unique_ptr<MemoryBuffer> Buffer; |
| 617 | StringRef Remaining; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 618 | |
Justin Bogner | c92330c | 2014-05-07 02:11:23 +0000 | [diff] [blame] | 619 | public: |
| 620 | LineConsumer(StringRef Filename) { |
Rafael Espindola | 7cba2a9 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 621 | ErrorOr<std::unique_ptr<MemoryBuffer>> BufferOrErr = |
| 622 | MemoryBuffer::getFileOrSTDIN(Filename); |
| 623 | if (std::error_code EC = BufferOrErr.getError()) { |
Justin Bogner | c92330c | 2014-05-07 02:11:23 +0000 | [diff] [blame] | 624 | errs() << Filename << ": " << EC.message() << "\n"; |
| 625 | Remaining = ""; |
Rafael Espindola | 7cba2a9 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 626 | } else { |
| 627 | Buffer = std::move(BufferOrErr.get()); |
Justin Bogner | c92330c | 2014-05-07 02:11:23 +0000 | [diff] [blame] | 628 | Remaining = Buffer->getBuffer(); |
Rafael Espindola | 7cba2a9 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 629 | } |
Justin Bogner | c92330c | 2014-05-07 02:11:23 +0000 | [diff] [blame] | 630 | } |
| 631 | bool empty() { return Remaining.empty(); } |
| 632 | void printNext(raw_ostream &OS, uint32_t LineNum) { |
| 633 | StringRef Line; |
| 634 | if (empty()) |
| 635 | Line = "/*EOF*/"; |
| 636 | else |
| 637 | std::tie(Line, Remaining) = Remaining.split("\n"); |
| 638 | OS << format("%5u:", LineNum) << Line << "\n"; |
| 639 | } |
| 640 | }; |
Eugene Zelenko | 380d47d | 2016-02-02 18:20:45 +0000 | [diff] [blame] | 641 | } // end anonymous namespace |
Justin Bogner | c92330c | 2014-05-07 02:11:23 +0000 | [diff] [blame] | 642 | |
Justin Bogner | 01c0550 | 2014-02-04 10:45:02 +0000 | [diff] [blame] | 643 | /// Convert a path to a gcov filename. If PreservePaths is true, this |
| 644 | /// translates "/" to "#", ".." to "^", and drops ".", to match gcov. |
| 645 | static std::string mangleCoveragePath(StringRef Filename, bool PreservePaths) { |
| 646 | if (!PreservePaths) |
Justin Bogner | de2703d | 2014-04-23 21:44:55 +0000 | [diff] [blame] | 647 | return sys::path::filename(Filename).str(); |
Justin Bogner | 01c0550 | 2014-02-04 10:45:02 +0000 | [diff] [blame] | 648 | |
| 649 | // This behaviour is defined by gcov in terms of text replacements, so it's |
| 650 | // not likely to do anything useful on filesystems with different textual |
| 651 | // conventions. |
| 652 | llvm::SmallString<256> Result(""); |
| 653 | StringRef::iterator I, S, E; |
| 654 | for (I = S = Filename.begin(), E = Filename.end(); I != E; ++I) { |
| 655 | if (*I != '/') |
| 656 | continue; |
| 657 | |
| 658 | if (I - S == 1 && *S == '.') { |
| 659 | // ".", the current directory, is skipped. |
| 660 | } else if (I - S == 2 && *S == '.' && *(S + 1) == '.') { |
| 661 | // "..", the parent directory, is replaced with "^". |
| 662 | Result.append("^#"); |
| 663 | } else { |
| 664 | if (S < I) |
| 665 | // Leave other components intact, |
| 666 | Result.append(S, I); |
| 667 | // And separate with "#". |
| 668 | Result.push_back('#'); |
| 669 | } |
| 670 | S = I + 1; |
| 671 | } |
| 672 | |
| 673 | if (S < I) |
| 674 | Result.append(S, I); |
Justin Bogner | 01c0550 | 2014-02-04 10:45:02 +0000 | [diff] [blame] | 675 | return Result.str(); |
| 676 | } |
| 677 | |
Justin Bogner | 56d05e4 | 2014-05-07 02:11:18 +0000 | [diff] [blame] | 678 | std::string FileInfo::getCoveragePath(StringRef Filename, |
| 679 | StringRef MainFilename) { |
| 680 | if (Options.NoOutput) |
| 681 | // This is probably a bug in gcov, but when -n is specified, paths aren't |
| 682 | // mangled at all, and the -l and -p options are ignored. Here, we do the |
| 683 | // same. |
| 684 | return Filename; |
| 685 | |
| 686 | std::string CoveragePath; |
| 687 | if (Options.LongFileNames && !Filename.equals(MainFilename)) |
| 688 | CoveragePath = |
| 689 | mangleCoveragePath(MainFilename, Options.PreservePaths) + "##"; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 690 | CoveragePath += mangleCoveragePath(Filename, Options.PreservePaths) + ".gcov"; |
Justin Bogner | 56d05e4 | 2014-05-07 02:11:18 +0000 | [diff] [blame] | 691 | return CoveragePath; |
| 692 | } |
| 693 | |
| 694 | std::unique_ptr<raw_ostream> |
| 695 | FileInfo::openCoveragePath(StringRef CoveragePath) { |
| 696 | if (Options.NoOutput) |
Justin Bogner | 459a8aa | 2014-05-07 16:01:27 +0000 | [diff] [blame] | 697 | return llvm::make_unique<raw_null_ostream>(); |
Justin Bogner | 56d05e4 | 2014-05-07 02:11:18 +0000 | [diff] [blame] | 698 | |
Rafael Espindola | 8c96862 | 2014-08-25 18:16:47 +0000 | [diff] [blame] | 699 | std::error_code EC; |
Calixte Denizet | 24b5a53 | 2018-09-20 16:09:30 +0000 | [diff] [blame] | 700 | auto OS = |
| 701 | llvm::make_unique<raw_fd_ostream>(CoveragePath, EC, sys::fs::F_Text); |
Rafael Espindola | 8c96862 | 2014-08-25 18:16:47 +0000 | [diff] [blame] | 702 | if (EC) { |
| 703 | errs() << EC.message() << "\n"; |
Justin Bogner | 459a8aa | 2014-05-07 16:01:27 +0000 | [diff] [blame] | 704 | return llvm::make_unique<raw_null_ostream>(); |
Justin Bogner | 56d05e4 | 2014-05-07 02:11:18 +0000 | [diff] [blame] | 705 | } |
| 706 | return std::move(OS); |
| 707 | } |
| 708 | |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 709 | /// print - Print source files with collected line count information. |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 710 | void FileInfo::print(raw_ostream &InfoOS, StringRef MainFilename, |
| 711 | StringRef GCNOFile, StringRef GCDAFile) { |
Vedant Kumar | 4bfa64a | 2017-04-26 00:16:10 +0000 | [diff] [blame] | 712 | SmallVector<StringRef, 4> Filenames; |
| 713 | for (const auto &LI : LineInfo) |
| 714 | Filenames.push_back(LI.first()); |
Fangrui Song | 3b35e17 | 2018-09-27 02:13:45 +0000 | [diff] [blame] | 715 | llvm::sort(Filenames); |
Vedant Kumar | 4bfa64a | 2017-04-26 00:16:10 +0000 | [diff] [blame] | 716 | |
| 717 | for (StringRef Filename : Filenames) { |
Justin Bogner | c92330c | 2014-05-07 02:11:23 +0000 | [diff] [blame] | 718 | auto AllLines = LineConsumer(Filename); |
Yuchen Wu | a49e1f5 | 2013-11-19 20:57:20 +0000 | [diff] [blame] | 719 | |
Justin Bogner | 56d05e4 | 2014-05-07 02:11:18 +0000 | [diff] [blame] | 720 | std::string CoveragePath = getCoveragePath(Filename, MainFilename); |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 721 | std::unique_ptr<raw_ostream> CovStream = openCoveragePath(CoveragePath); |
| 722 | raw_ostream &CovOS = *CovStream; |
Yuchen Wu | 6cd7a3f | 2013-12-03 00:57:11 +0000 | [diff] [blame] | 723 | |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 724 | CovOS << " -: 0:Source:" << Filename << "\n"; |
| 725 | CovOS << " -: 0:Graph:" << GCNOFile << "\n"; |
| 726 | CovOS << " -: 0:Data:" << GCDAFile << "\n"; |
| 727 | CovOS << " -: 0:Runs:" << RunCount << "\n"; |
| 728 | CovOS << " -: 0:Programs:" << ProgramCount << "\n"; |
Yuchen Wu | a49e1f5 | 2013-11-19 20:57:20 +0000 | [diff] [blame] | 729 | |
Vedant Kumar | 4bfa64a | 2017-04-26 00:16:10 +0000 | [diff] [blame] | 730 | const LineData &Line = LineInfo[Filename]; |
Yuchen Wu | d218959 | 2013-12-19 00:29:25 +0000 | [diff] [blame] | 731 | GCOVCoverage FileCoverage(Filename); |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 732 | for (uint32_t LineIndex = 0; LineIndex < Line.LastLine || !AllLines.empty(); |
| 733 | ++LineIndex) { |
Yuchen Wu | f6358f3 | 2013-12-18 18:40:15 +0000 | [diff] [blame] | 734 | if (Options.BranchInfo) { |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 735 | FunctionLines::const_iterator FuncsIt = Line.Functions.find(LineIndex); |
| 736 | if (FuncsIt != Line.Functions.end()) |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 737 | printFunctionSummary(CovOS, FuncsIt->second); |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 738 | } |
Yuchen Wu | d25d7a5 | 2013-12-03 01:35:31 +0000 | [diff] [blame] | 739 | |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 740 | BlockLines::const_iterator BlocksIt = Line.Blocks.find(LineIndex); |
| 741 | if (BlocksIt == Line.Blocks.end()) { |
| 742 | // No basic blocks are on this line. Not an executable line of code. |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 743 | CovOS << " -:"; |
| 744 | AllLines.printNext(CovOS, LineIndex + 1); |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 745 | } else { |
Yuchen Wu | 357fcf9 | 2013-12-03 00:38:21 +0000 | [diff] [blame] | 746 | const BlockVector &Blocks = BlocksIt->second; |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 747 | |
| 748 | // Add up the block counts to form line counts. |
Yuchen Wu | d218959 | 2013-12-19 00:29:25 +0000 | [diff] [blame] | 749 | DenseMap<const GCOVFunction *, bool> LineExecs; |
Justin Bogner | 798383b | 2015-01-23 22:57:02 +0000 | [diff] [blame] | 750 | for (const GCOVBlock *Block : Blocks) { |
Yuchen Wu | d218959 | 2013-12-19 00:29:25 +0000 | [diff] [blame] | 751 | if (Options.FuncCoverage) { |
| 752 | // This is a slightly convoluted way to most accurately gather line |
| 753 | // statistics for functions. Basically what is happening is that we |
| 754 | // don't want to count a single line with multiple blocks more than |
| 755 | // once. However, we also don't simply want to give the total line |
| 756 | // count to every function that starts on the line. Thus, what is |
| 757 | // happening here are two things: |
| 758 | // 1) Ensure that the number of logical lines is only incremented |
| 759 | // once per function. |
| 760 | // 2) If there are multiple blocks on the same line, ensure that the |
| 761 | // number of lines executed is incremented as long as at least |
| 762 | // one of the blocks are executed. |
| 763 | const GCOVFunction *Function = &Block->getParent(); |
| 764 | if (FuncCoverages.find(Function) == FuncCoverages.end()) { |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 765 | std::pair<const GCOVFunction *, GCOVCoverage> KeyValue( |
| 766 | Function, GCOVCoverage(Function->getName())); |
Yuchen Wu | d218959 | 2013-12-19 00:29:25 +0000 | [diff] [blame] | 767 | FuncCoverages.insert(KeyValue); |
| 768 | } |
| 769 | GCOVCoverage &FuncCoverage = FuncCoverages.find(Function)->second; |
| 770 | |
| 771 | if (LineExecs.find(Function) == LineExecs.end()) { |
| 772 | if (Block->getCount()) { |
| 773 | ++FuncCoverage.LinesExec; |
| 774 | LineExecs[Function] = true; |
| 775 | } else { |
| 776 | LineExecs[Function] = false; |
| 777 | } |
| 778 | ++FuncCoverage.LogicalLines; |
| 779 | } else if (!LineExecs[Function] && Block->getCount()) { |
| 780 | ++FuncCoverage.LinesExec; |
| 781 | LineExecs[Function] = true; |
| 782 | } |
| 783 | } |
Yuchen Wu | 357fcf9 | 2013-12-03 00:38:21 +0000 | [diff] [blame] | 784 | } |
Yuchen Wu | 8cb0f6e | 2013-12-18 21:12:51 +0000 | [diff] [blame] | 785 | |
Calixte Denizet | 24b5a53 | 2018-09-20 16:09:30 +0000 | [diff] [blame] | 786 | const uint64_t LineCount = GCOVBlock::getLineCount(Blocks); |
Yuchen Wu | 357fcf9 | 2013-12-03 00:38:21 +0000 | [diff] [blame] | 787 | if (LineCount == 0) |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 788 | CovOS << " #####:"; |
Yuchen Wu | 8cb0f6e | 2013-12-18 21:12:51 +0000 | [diff] [blame] | 789 | else { |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 790 | CovOS << format("%9" PRIu64 ":", LineCount); |
Yuchen Wu | d218959 | 2013-12-19 00:29:25 +0000 | [diff] [blame] | 791 | ++FileCoverage.LinesExec; |
Yuchen Wu | 8cb0f6e | 2013-12-18 21:12:51 +0000 | [diff] [blame] | 792 | } |
Yuchen Wu | d218959 | 2013-12-19 00:29:25 +0000 | [diff] [blame] | 793 | ++FileCoverage.LogicalLines; |
Yuchen Wu | 30d5ef5 | 2013-12-10 01:02:07 +0000 | [diff] [blame] | 794 | |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 795 | AllLines.printNext(CovOS, LineIndex + 1); |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 796 | |
Yuchen Wu | 30d5ef5 | 2013-12-10 01:02:07 +0000 | [diff] [blame] | 797 | uint32_t BlockNo = 0; |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 798 | uint32_t EdgeNo = 0; |
Justin Bogner | 798383b | 2015-01-23 22:57:02 +0000 | [diff] [blame] | 799 | for (const GCOVBlock *Block : Blocks) { |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 800 | // Only print block and branch information at the end of the block. |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 801 | if (Block->getLastLine() != LineIndex + 1) |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 802 | continue; |
| 803 | if (Options.AllBlocks) |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 804 | printBlockInfo(CovOS, *Block, LineIndex, BlockNo); |
Yuchen Wu | f6358f3 | 2013-12-18 18:40:15 +0000 | [diff] [blame] | 805 | if (Options.BranchInfo) { |
Yuchen Wu | 89452cf | 2013-12-16 22:14:02 +0000 | [diff] [blame] | 806 | size_t NumEdges = Block->getNumDstEdges(); |
| 807 | if (NumEdges > 1) |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 808 | printBranchInfo(CovOS, *Block, FileCoverage, EdgeNo); |
Yuchen Wu | 89452cf | 2013-12-16 22:14:02 +0000 | [diff] [blame] | 809 | else if (Options.UncondBranch && NumEdges == 1) |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 810 | printUncondBranchInfo(CovOS, EdgeNo, |
| 811 | (*Block->dst_begin())->Count); |
Yuchen Wu | 89452cf | 2013-12-16 22:14:02 +0000 | [diff] [blame] | 812 | } |
Yuchen Wu | 30d5ef5 | 2013-12-10 01:02:07 +0000 | [diff] [blame] | 813 | } |
| 814 | } |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 815 | } |
Justin Bogner | 01c0550 | 2014-02-04 10:45:02 +0000 | [diff] [blame] | 816 | FileCoverages.push_back(std::make_pair(CoveragePath, FileCoverage)); |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 817 | } |
Yuchen Wu | d218959 | 2013-12-19 00:29:25 +0000 | [diff] [blame] | 818 | |
| 819 | // FIXME: There is no way to detect calls given current instrumentation. |
| 820 | if (Options.FuncCoverage) |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 821 | printFuncCoverage(InfoOS); |
| 822 | printFileCoverage(InfoOS); |
Devang Patel | d02c42b | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 823 | } |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 824 | |
| 825 | /// printFunctionSummary - Print function and block summary. |
Justin Bogner | 56d05e4 | 2014-05-07 02:11:18 +0000 | [diff] [blame] | 826 | void FileInfo::printFunctionSummary(raw_ostream &OS, |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 827 | const FunctionVector &Funcs) const { |
Justin Bogner | 798383b | 2015-01-23 22:57:02 +0000 | [diff] [blame] | 828 | for (const GCOVFunction *Func : Funcs) { |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 829 | uint64_t EntryCount = Func->getEntryCount(); |
Yuchen Wu | 2ceb6ae | 2013-12-18 18:46:25 +0000 | [diff] [blame] | 830 | uint32_t BlocksExec = 0; |
Justin Bogner | 798383b | 2015-01-23 22:57:02 +0000 | [diff] [blame] | 831 | for (const GCOVBlock &Block : Func->blocks()) |
David Blaikie | e1c0863 | 2014-04-21 21:40:16 +0000 | [diff] [blame] | 832 | if (Block.getNumDstEdges() && Block.getCount()) |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 833 | ++BlocksExec; |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 834 | |
| 835 | OS << "function " << Func->getName() << " called " << EntryCount |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 836 | << " returned " << safeDiv(Func->getExitCount() * 100, EntryCount) |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 837 | << "% blocks executed " |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 838 | << safeDiv(BlocksExec * 100, Func->getNumBlocks() - 1) << "%\n"; |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 839 | } |
| 840 | } |
| 841 | |
| 842 | /// printBlockInfo - Output counts for each block. |
Justin Bogner | 56d05e4 | 2014-05-07 02:11:18 +0000 | [diff] [blame] | 843 | void FileInfo::printBlockInfo(raw_ostream &OS, const GCOVBlock &Block, |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 844 | uint32_t LineIndex, uint32_t &BlockNo) const { |
| 845 | if (Block.getCount() == 0) |
| 846 | OS << " $$$$$:"; |
| 847 | else |
| 848 | OS << format("%9" PRIu64 ":", Block.getCount()); |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 849 | OS << format("%5u-block %2u\n", LineIndex + 1, BlockNo++); |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 850 | } |
| 851 | |
Yuchen Wu | 89452cf | 2013-12-16 22:14:02 +0000 | [diff] [blame] | 852 | /// printBranchInfo - Print conditional branch probabilities. |
Justin Bogner | 56d05e4 | 2014-05-07 02:11:18 +0000 | [diff] [blame] | 853 | void FileInfo::printBranchInfo(raw_ostream &OS, const GCOVBlock &Block, |
Yuchen Wu | d218959 | 2013-12-19 00:29:25 +0000 | [diff] [blame] | 854 | GCOVCoverage &Coverage, uint32_t &EdgeNo) { |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 855 | SmallVector<uint64_t, 16> BranchCounts; |
| 856 | uint64_t TotalCounts = 0; |
Justin Bogner | 798383b | 2015-01-23 22:57:02 +0000 | [diff] [blame] | 857 | for (const GCOVEdge *Edge : Block.dsts()) { |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 858 | BranchCounts.push_back(Edge->Count); |
| 859 | TotalCounts += Edge->Count; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 860 | if (Block.getCount()) |
| 861 | ++Coverage.BranchesExec; |
| 862 | if (Edge->Count) |
| 863 | ++Coverage.BranchesTaken; |
Yuchen Wu | 8cb0f6e | 2013-12-18 21:12:51 +0000 | [diff] [blame] | 864 | ++Coverage.Branches; |
Yuchen Wu | d218959 | 2013-12-19 00:29:25 +0000 | [diff] [blame] | 865 | |
| 866 | if (Options.FuncCoverage) { |
| 867 | const GCOVFunction *Function = &Block.getParent(); |
| 868 | GCOVCoverage &FuncCoverage = FuncCoverages.find(Function)->second; |
Justin Bogner | 4c61bbe | 2015-01-23 22:38:01 +0000 | [diff] [blame] | 869 | if (Block.getCount()) |
| 870 | ++FuncCoverage.BranchesExec; |
| 871 | if (Edge->Count) |
| 872 | ++FuncCoverage.BranchesTaken; |
Yuchen Wu | d218959 | 2013-12-19 00:29:25 +0000 | [diff] [blame] | 873 | ++FuncCoverage.Branches; |
| 874 | } |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 875 | } |
| 876 | |
Justin Bogner | 798383b | 2015-01-23 22:57:02 +0000 | [diff] [blame] | 877 | for (uint64_t N : BranchCounts) |
Yuchen Wu | f6358f3 | 2013-12-18 18:40:15 +0000 | [diff] [blame] | 878 | OS << format("branch %2u ", EdgeNo++) |
Justin Bogner | 798383b | 2015-01-23 22:57:02 +0000 | [diff] [blame] | 879 | << formatBranchInfo(Options, N, TotalCounts) << "\n"; |
Yuchen Wu | a263979 | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 880 | } |
Yuchen Wu | 89452cf | 2013-12-16 22:14:02 +0000 | [diff] [blame] | 881 | |
| 882 | /// printUncondBranchInfo - Print unconditional branch probabilities. |
Justin Bogner | 56d05e4 | 2014-05-07 02:11:18 +0000 | [diff] [blame] | 883 | void FileInfo::printUncondBranchInfo(raw_ostream &OS, uint32_t &EdgeNo, |
Yuchen Wu | 89452cf | 2013-12-16 22:14:02 +0000 | [diff] [blame] | 884 | uint64_t Count) const { |
Yuchen Wu | f6358f3 | 2013-12-18 18:40:15 +0000 | [diff] [blame] | 885 | OS << format("unconditional %2u ", EdgeNo++) |
| 886 | << formatBranchInfo(Options, Count, Count) << "\n"; |
Yuchen Wu | 89452cf | 2013-12-16 22:14:02 +0000 | [diff] [blame] | 887 | } |
Yuchen Wu | 8cb0f6e | 2013-12-18 21:12:51 +0000 | [diff] [blame] | 888 | |
Yuchen Wu | d218959 | 2013-12-19 00:29:25 +0000 | [diff] [blame] | 889 | // printCoverage - Print generic coverage info used by both printFuncCoverage |
| 890 | // and printFileCoverage. |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 891 | void FileInfo::printCoverage(raw_ostream &OS, |
| 892 | const GCOVCoverage &Coverage) const { |
| 893 | OS << format("Lines executed:%.2f%% of %u\n", |
| 894 | double(Coverage.LinesExec) * 100 / Coverage.LogicalLines, |
| 895 | Coverage.LogicalLines); |
Yuchen Wu | 8cb0f6e | 2013-12-18 21:12:51 +0000 | [diff] [blame] | 896 | if (Options.BranchInfo) { |
| 897 | if (Coverage.Branches) { |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 898 | OS << format("Branches executed:%.2f%% of %u\n", |
| 899 | double(Coverage.BranchesExec) * 100 / Coverage.Branches, |
| 900 | Coverage.Branches); |
| 901 | OS << format("Taken at least once:%.2f%% of %u\n", |
| 902 | double(Coverage.BranchesTaken) * 100 / Coverage.Branches, |
| 903 | Coverage.Branches); |
Yuchen Wu | 8cb0f6e | 2013-12-18 21:12:51 +0000 | [diff] [blame] | 904 | } else { |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 905 | OS << "No branches\n"; |
Yuchen Wu | 8cb0f6e | 2013-12-18 21:12:51 +0000 | [diff] [blame] | 906 | } |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 907 | OS << "No calls\n"; // to be consistent with gcov |
Yuchen Wu | 8cb0f6e | 2013-12-18 21:12:51 +0000 | [diff] [blame] | 908 | } |
Yuchen Wu | d218959 | 2013-12-19 00:29:25 +0000 | [diff] [blame] | 909 | } |
| 910 | |
| 911 | // printFuncCoverage - Print per-function coverage info. |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 912 | void FileInfo::printFuncCoverage(raw_ostream &OS) const { |
Justin Bogner | 798383b | 2015-01-23 22:57:02 +0000 | [diff] [blame] | 913 | for (const auto &FC : FuncCoverages) { |
| 914 | const GCOVCoverage &Coverage = FC.second; |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 915 | OS << "Function '" << Coverage.Name << "'\n"; |
| 916 | printCoverage(OS, Coverage); |
| 917 | OS << "\n"; |
Yuchen Wu | d218959 | 2013-12-19 00:29:25 +0000 | [diff] [blame] | 918 | } |
| 919 | } |
| 920 | |
| 921 | // printFileCoverage - Print per-file coverage info. |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 922 | void FileInfo::printFileCoverage(raw_ostream &OS) const { |
Justin Bogner | 798383b | 2015-01-23 22:57:02 +0000 | [diff] [blame] | 923 | for (const auto &FC : FileCoverages) { |
| 924 | const std::string &Filename = FC.first; |
| 925 | const GCOVCoverage &Coverage = FC.second; |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 926 | OS << "File '" << Coverage.Name << "'\n"; |
| 927 | printCoverage(OS, Coverage); |
Justin Bogner | 56d05e4 | 2014-05-07 02:11:18 +0000 | [diff] [blame] | 928 | if (!Options.NoOutput) |
Justin Bogner | c6945d9 | 2015-01-23 23:09:27 +0000 | [diff] [blame] | 929 | OS << Coverage.Name << ":creating '" << Filename << "'\n"; |
| 930 | OS << "\n"; |
Yuchen Wu | d218959 | 2013-12-19 00:29:25 +0000 | [diff] [blame] | 931 | } |
Yuchen Wu | 8cb0f6e | 2013-12-18 21:12:51 +0000 | [diff] [blame] | 932 | } |