Yuchen Wu | c3e6424 | 2013-12-05 22:02:29 +0000 | [diff] [blame] | 1 | //===- GCOV.cpp - LLVM coverage tool --------------------------------------===// |
Devang Patel | 3714065 | 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 | 3b55196 | 2013-11-14 11:44:58 +0000 | [diff] [blame] | 10 | // GCOV implements the interface to read and write coverage files that use |
Devang Patel | 8dfb655 | 2011-10-04 17:24:48 +0000 | [diff] [blame] | 11 | // 'gcov' format. |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 12 | // |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Yuchen Wu | 0367815 | 2013-10-25 02:22:24 +0000 | [diff] [blame] | 15 | #include "llvm/Support/Debug.h" |
Devang Patel | 8dfb655 | 2011-10-04 17:24:48 +0000 | [diff] [blame] | 16 | #include "llvm/Support/GCOV.h" |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/OwningPtr.h" |
Devang Patel | a9e8a25 | 2011-09-29 16:46:47 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/STLExtras.h" |
Bob Wilson | 3461bed | 2013-10-22 05:09:41 +0000 | [diff] [blame] | 19 | #include "llvm/Support/Format.h" |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 20 | #include "llvm/Support/MemoryObject.h" |
| 21 | #include "llvm/Support/system_error.h" |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 22 | #include <algorithm> |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 23 | using namespace llvm; |
| 24 | |
| 25 | //===----------------------------------------------------------------------===// |
| 26 | // GCOVFile implementation. |
| 27 | |
| 28 | /// ~GCOVFile - Delete GCOVFile and its content. |
| 29 | GCOVFile::~GCOVFile() { |
| 30 | DeleteContainerPointers(Functions); |
| 31 | } |
| 32 | |
Yuchen Wu | bec4e90 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 33 | /// readGCNO - Read GCNO buffer. |
| 34 | bool GCOVFile::readGCNO(GCOVBuffer &Buffer) { |
| 35 | if (!Buffer.readGCNOFormat()) return false; |
| 36 | if (!Buffer.readGCOVVersion(Version)) return false; |
| 37 | |
| 38 | if (!Buffer.readInt(Checksum)) return false; |
| 39 | while (true) { |
| 40 | if (!Buffer.readFunctionTag()) break; |
Yuchen Wu | 5752997 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 41 | GCOVFunction *GFun = new GCOVFunction(*this); |
Yuchen Wu | bec4e90 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 42 | if (!GFun->readGCNO(Buffer, Version)) |
| 43 | return false; |
| 44 | Functions.push_back(GFun); |
| 45 | } |
| 46 | |
Yuchen Wu | 21517e4 | 2013-12-04 05:07:36 +0000 | [diff] [blame] | 47 | GCNOInitialized = true; |
Yuchen Wu | bec4e90 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 48 | return true; |
Devang Patel | e5a8f2f9 | 2011-09-29 17:06:40 +0000 | [diff] [blame] | 49 | } |
| 50 | |
Yuchen Wu | bec4e90 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 51 | /// readGCDA - Read GCDA buffer. It is required that readGCDA() can only be |
| 52 | /// called after readGCNO(). |
| 53 | bool GCOVFile::readGCDA(GCOVBuffer &Buffer) { |
Yuchen Wu | 21517e4 | 2013-12-04 05:07:36 +0000 | [diff] [blame] | 54 | assert(GCNOInitialized && "readGCDA() can only be called after readGCNO()"); |
Yuchen Wu | bec4e90 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 55 | if (!Buffer.readGCDAFormat()) return false; |
| 56 | GCOV::GCOVVersion GCDAVersion; |
| 57 | if (!Buffer.readGCOVVersion(GCDAVersion)) return false; |
| 58 | if (Version != GCDAVersion) { |
| 59 | errs() << "GCOV versions do not match.\n"; |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 60 | return false; |
Yuchen Wu | bec4e90 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 61 | } |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 62 | |
Yuchen Wu | bec4e90 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 63 | uint32_t GCDAChecksum; |
| 64 | if (!Buffer.readInt(GCDAChecksum)) return false; |
| 65 | if (Checksum != GCDAChecksum) { |
Yuchen Wu | 5752997 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 66 | errs() << "File checksums do not match: " << Checksum << " != " |
| 67 | << GCDAChecksum << ".\n"; |
Yuchen Wu | bec4e90 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 68 | return false; |
| 69 | } |
| 70 | for (size_t i = 0, e = Functions.size(); i < e; ++i) { |
| 71 | if (!Buffer.readFunctionTag()) { |
| 72 | errs() << "Unexpected number of functions.\n"; |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 73 | return false; |
| 74 | } |
Yuchen Wu | bec4e90 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 75 | if (!Functions[i]->readGCDA(Buffer, Version)) |
| 76 | return false; |
| 77 | } |
| 78 | if (Buffer.readObjectTag()) { |
| 79 | uint32_t Length; |
| 80 | uint32_t Dummy; |
| 81 | if (!Buffer.readInt(Length)) return false; |
| 82 | if (!Buffer.readInt(Dummy)) return false; // checksum |
| 83 | if (!Buffer.readInt(Dummy)) return false; // num |
Yuchen Wu | 8742a28 | 2013-12-16 20:03:11 +0000 | [diff] [blame] | 84 | if (!Buffer.readInt(RunCount)) return false; |
Yuchen Wu | bec4e90 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 85 | Buffer.advanceCursor(Length-3); |
| 86 | } |
| 87 | while (Buffer.readProgramTag()) { |
| 88 | uint32_t Length; |
| 89 | if (!Buffer.readInt(Length)) return false; |
| 90 | Buffer.advanceCursor(Length); |
| 91 | ++ProgramCount; |
Yuchen Wu | 14ae8e6 | 2013-10-25 02:22:21 +0000 | [diff] [blame] | 92 | } |
| 93 | |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 94 | return true; |
| 95 | } |
| 96 | |
Yuchen Wu | 0367815 | 2013-10-25 02:22:24 +0000 | [diff] [blame] | 97 | /// dump - Dump GCOVFile content to dbgs() for debugging purposes. |
Yuchen Wu | ef6909d | 2013-11-19 20:33:32 +0000 | [diff] [blame] | 98 | void GCOVFile::dump() const { |
| 99 | for (SmallVectorImpl<GCOVFunction *>::const_iterator I = Functions.begin(), |
Bill Wendling | ea6397f | 2012-07-19 00:11:40 +0000 | [diff] [blame] | 100 | E = Functions.end(); I != E; ++I) |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 101 | (*I)->dump(); |
| 102 | } |
| 103 | |
| 104 | /// collectLineCounts - Collect line counts. This must be used after |
| 105 | /// reading .gcno and .gcda files. |
| 106 | void GCOVFile::collectLineCounts(FileInfo &FI) { |
Craig Topper | af0dea1 | 2013-07-04 01:31:24 +0000 | [diff] [blame] | 107 | for (SmallVectorImpl<GCOVFunction *>::iterator I = Functions.begin(), |
NAKAMURA Takumi | 3b55196 | 2013-11-14 11:44:58 +0000 | [diff] [blame] | 108 | E = Functions.end(); I != E; ++I) |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 109 | (*I)->collectLineCounts(FI); |
Yuchen Wu | 30672d9 | 2013-11-05 01:11:58 +0000 | [diff] [blame] | 110 | FI.setRunCount(RunCount); |
Yuchen Wu | 14ae8e6 | 2013-10-25 02:22:21 +0000 | [diff] [blame] | 111 | FI.setProgramCount(ProgramCount); |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | //===----------------------------------------------------------------------===// |
| 115 | // GCOVFunction implementation. |
| 116 | |
| 117 | /// ~GCOVFunction - Delete GCOVFunction and its content. |
| 118 | GCOVFunction::~GCOVFunction() { |
| 119 | DeleteContainerPointers(Blocks); |
Yuchen Wu | 8ad9b04 | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 120 | DeleteContainerPointers(Edges); |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 121 | } |
| 122 | |
Yuchen Wu | ba71833 | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 123 | /// readGCNO - Read a function from the GCNO buffer. Return false if an error |
| 124 | /// occurs. |
Yuchen Wu | bec4e90 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 125 | bool GCOVFunction::readGCNO(GCOVBuffer &Buff, GCOV::GCOVVersion Version) { |
Yuchen Wu | e28da84 | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 126 | uint32_t Dummy; |
| 127 | if (!Buff.readInt(Dummy)) return false; // Function header length |
| 128 | if (!Buff.readInt(Ident)) return false; |
Daniel Jasper | 87a24d5 | 2013-12-04 08:57:17 +0000 | [diff] [blame] | 129 | if (!Buff.readInt(Checksum)) return false; |
Yuchen Wu | 5752997 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 130 | if (Version != GCOV::V402) { |
| 131 | uint32_t CfgChecksum; |
| 132 | if (!Buff.readInt(CfgChecksum)) return false; |
| 133 | if (Parent.getChecksum() != CfgChecksum) { |
| 134 | errs() << "File checksums do not match: " << Parent.getChecksum() |
| 135 | << " != " << CfgChecksum << " in (" << Name << ").\n"; |
| 136 | return false; |
| 137 | } |
| 138 | } |
Yuchen Wu | e28da84 | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 139 | if (!Buff.readString(Name)) return false; |
Yuchen Wu | ba71833 | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 140 | if (!Buff.readString(Filename)) return false; |
Yuchen Wu | e28da84 | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 141 | if (!Buff.readInt(LineNumber)) return false; |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 142 | |
| 143 | // read blocks. |
Yuchen Wu | e28da84 | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 144 | if (!Buff.readBlockTag()) { |
| 145 | errs() << "Block tag not found.\n"; |
| 146 | return false; |
| 147 | } |
| 148 | uint32_t BlockCount; |
| 149 | if (!Buff.readInt(BlockCount)) return false; |
Bob Wilson | 868e6e3 | 2013-10-22 20:02:36 +0000 | [diff] [blame] | 150 | for (uint32_t i = 0, e = BlockCount; i != e; ++i) { |
Yuchen Wu | e28da84 | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 151 | if (!Buff.readInt(Dummy)) return false; // Block flags; |
Yuchen Wu | d738bee | 2013-11-14 00:32:00 +0000 | [diff] [blame] | 152 | Blocks.push_back(new GCOVBlock(*this, i)); |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | // read edges. |
| 156 | while (Buff.readEdgeTag()) { |
Yuchen Wu | e28da84 | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 157 | uint32_t EdgeCount; |
| 158 | if (!Buff.readInt(EdgeCount)) return false; |
| 159 | EdgeCount = (EdgeCount - 1) / 2; |
| 160 | uint32_t BlockNo; |
| 161 | if (!Buff.readInt(BlockNo)) return false; |
| 162 | if (BlockNo >= BlockCount) { |
Yuchen Wu | 4c9f19d | 2013-12-05 22:02:33 +0000 | [diff] [blame] | 163 | errs() << "Unexpected block number: " << BlockNo << " (in " << Name |
| 164 | << ").\n"; |
Yuchen Wu | e28da84 | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 165 | return false; |
| 166 | } |
Bob Wilson | 868e6e3 | 2013-10-22 20:02:36 +0000 | [diff] [blame] | 167 | for (uint32_t i = 0, e = EdgeCount; i != e; ++i) { |
Yuchen Wu | e28da84 | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 168 | uint32_t Dst; |
| 169 | if (!Buff.readInt(Dst)) return false; |
Yuchen Wu | 8ad9b04 | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 170 | GCOVEdge *Edge = new GCOVEdge(Blocks[BlockNo], Blocks[Dst]); |
| 171 | Edges.push_back(Edge); |
| 172 | Blocks[BlockNo]->addDstEdge(Edge); |
| 173 | Blocks[Dst]->addSrcEdge(Edge); |
Yuchen Wu | e28da84 | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 174 | if (!Buff.readInt(Dummy)) return false; // Edge flag |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 175 | } |
| 176 | } |
| 177 | |
| 178 | // read line table. |
| 179 | while (Buff.readLineTag()) { |
Yuchen Wu | e28da84 | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 180 | uint32_t LineTableLength; |
| 181 | if (!Buff.readInt(LineTableLength)) return false; |
Bob Wilson | 00928bc | 2013-10-22 19:54:32 +0000 | [diff] [blame] | 182 | uint32_t EndPos = Buff.getCursor() + LineTableLength*4; |
Yuchen Wu | e28da84 | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 183 | uint32_t BlockNo; |
| 184 | if (!Buff.readInt(BlockNo)) return false; |
| 185 | if (BlockNo >= BlockCount) { |
Yuchen Wu | 4c9f19d | 2013-12-05 22:02:33 +0000 | [diff] [blame] | 186 | errs() << "Unexpected block number: " << BlockNo << " (in " << Name |
| 187 | << ").\n"; |
Yuchen Wu | e28da84 | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 188 | return false; |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 189 | } |
Yuchen Wu | e28da84 | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 190 | GCOVBlock *Block = Blocks[BlockNo]; |
| 191 | if (!Buff.readInt(Dummy)) return false; // flag |
| 192 | while (Buff.getCursor() != (EndPos - 4)) { |
Yuchen Wu | d738bee | 2013-11-14 00:32:00 +0000 | [diff] [blame] | 193 | StringRef F; |
| 194 | if (!Buff.readString(F)) return false; |
Yuchen Wu | 4c9f19d | 2013-12-05 22:02:33 +0000 | [diff] [blame] | 195 | if (Filename != F) { |
| 196 | errs() << "Multiple sources for a single basic block: " << Filename |
| 197 | << " != " << F << " (in " << Name << ").\n"; |
Yuchen Wu | d738bee | 2013-11-14 00:32:00 +0000 | [diff] [blame] | 198 | return false; |
| 199 | } |
Yuchen Wu | e28da84 | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 200 | if (Buff.getCursor() == (EndPos - 4)) break; |
| 201 | while (true) { |
| 202 | uint32_t Line; |
| 203 | if (!Buff.readInt(Line)) return false; |
| 204 | if (!Line) break; |
Yuchen Wu | d738bee | 2013-11-14 00:32:00 +0000 | [diff] [blame] | 205 | Block->addLine(Line); |
Yuchen Wu | e28da84 | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 206 | } |
| 207 | } |
| 208 | if (!Buff.readInt(Dummy)) return false; // flag |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 209 | } |
| 210 | return true; |
| 211 | } |
| 212 | |
Yuchen Wu | ba71833 | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 213 | /// readGCDA - Read a function from the GCDA buffer. Return false if an error |
| 214 | /// occurs. |
Yuchen Wu | bec4e90 | 2013-12-04 04:49:23 +0000 | [diff] [blame] | 215 | bool GCOVFunction::readGCDA(GCOVBuffer &Buff, GCOV::GCOVVersion Version) { |
Yuchen Wu | ba71833 | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 216 | uint32_t Dummy; |
| 217 | if (!Buff.readInt(Dummy)) return false; // Function header length |
Daniel Jasper | 87a24d5 | 2013-12-04 08:57:17 +0000 | [diff] [blame] | 218 | |
Yuchen Wu | 5752997 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 219 | uint32_t GCDAIdent; |
| 220 | if (!Buff.readInt(GCDAIdent)) return false; |
| 221 | if (Ident != GCDAIdent) { |
| 222 | errs() << "Function identifiers do not match: " << Ident << " != " |
| 223 | << GCDAIdent << " (in " << Name << ").\n"; |
| 224 | return false; |
| 225 | } |
Yuchen Wu | ba71833 | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 226 | |
Daniel Jasper | 87a24d5 | 2013-12-04 08:57:17 +0000 | [diff] [blame] | 227 | uint32_t GCDAChecksum; |
| 228 | if (!Buff.readInt(GCDAChecksum)) return false; |
| 229 | if (Checksum != GCDAChecksum) { |
| 230 | errs() << "Function checksums do not match: " << Checksum << " != " |
| 231 | << GCDAChecksum << " (in " << Name << ").\n"; |
| 232 | return false; |
| 233 | } |
Yuchen Wu | 5752997 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 234 | |
| 235 | uint32_t CfgChecksum; |
| 236 | if (Version != GCOV::V402) { |
| 237 | if (!Buff.readInt(CfgChecksum)) return false; |
| 238 | if (Parent.getChecksum() != CfgChecksum) { |
| 239 | errs() << "File checksums do not match: " << Parent.getChecksum() |
| 240 | << " != " << CfgChecksum << " (in " << Name << ").\n"; |
| 241 | return false; |
| 242 | } |
| 243 | } |
| 244 | |
| 245 | StringRef GCDAName; |
| 246 | if (!Buff.readString(GCDAName)) return false; |
| 247 | if (Name != GCDAName) { |
| 248 | errs() << "Function names do not match: " << Name << " != " << GCDAName |
| 249 | << ".\n"; |
| 250 | return false; |
| 251 | } |
Yuchen Wu | ba71833 | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 252 | |
| 253 | if (!Buff.readArcTag()) { |
Yuchen Wu | 5752997 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 254 | errs() << "Arc tag not found (in " << Name << ").\n"; |
Yuchen Wu | ba71833 | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 255 | return false; |
| 256 | } |
Yuchen Wu | 8ad9b04 | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 257 | |
Yuchen Wu | ba71833 | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 258 | uint32_t Count; |
| 259 | if (!Buff.readInt(Count)) return false; |
| 260 | Count /= 2; |
| 261 | |
| 262 | // This for loop adds the counts for each block. A second nested loop is |
| 263 | // required to combine the edge counts that are contained in the GCDA file. |
Yuchen Wu | 8ad9b04 | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 264 | for (uint32_t BlockNo = 0; Count > 0; ++BlockNo) { |
| 265 | // The last block is always reserved for exit block |
| 266 | if (BlockNo >= Blocks.size()-1) { |
Yuchen Wu | 5752997 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 267 | errs() << "Unexpected number of edges (in " << Name << ").\n"; |
Yuchen Wu | ba71833 | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 268 | return false; |
| 269 | } |
Yuchen Wu | 8ad9b04 | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 270 | GCOVBlock &Block = *Blocks[BlockNo]; |
| 271 | for (size_t EdgeNo = 0, End = Block.getNumDstEdges(); EdgeNo < End; |
| 272 | ++EdgeNo) { |
Yuchen Wu | ba71833 | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 273 | if (Count == 0) { |
Yuchen Wu | 5752997 | 2013-12-04 05:42:28 +0000 | [diff] [blame] | 274 | errs() << "Unexpected number of edges (in " << Name << ").\n"; |
Yuchen Wu | ba71833 | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 275 | return false; |
| 276 | } |
| 277 | uint64_t ArcCount; |
| 278 | if (!Buff.readInt64(ArcCount)) return false; |
Yuchen Wu | 8ad9b04 | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 279 | Block.addCount(EdgeNo, ArcCount); |
Yuchen Wu | ba71833 | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 280 | --Count; |
| 281 | } |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 282 | Block.sortDstEdges(); |
Yuchen Wu | ba71833 | 2013-12-03 00:15:49 +0000 | [diff] [blame] | 283 | } |
| 284 | return true; |
| 285 | } |
| 286 | |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 287 | /// getEntryCount - Get the number of times the function was called by |
| 288 | /// retrieving the entry block's count. |
| 289 | uint64_t GCOVFunction::getEntryCount() const { |
| 290 | return Blocks.front()->getCount(); |
| 291 | } |
| 292 | |
| 293 | /// getExitCount - Get the number of times the function returned by retrieving |
| 294 | /// the exit block's count. |
| 295 | uint64_t GCOVFunction::getExitCount() const { |
| 296 | return Blocks.back()->getCount(); |
| 297 | } |
| 298 | |
Yuchen Wu | 0367815 | 2013-10-25 02:22:24 +0000 | [diff] [blame] | 299 | /// dump - Dump GCOVFunction content to dbgs() for debugging purposes. |
Yuchen Wu | ef6909d | 2013-11-19 20:33:32 +0000 | [diff] [blame] | 300 | void GCOVFunction::dump() const { |
Yuchen Wu | 0367815 | 2013-10-25 02:22:24 +0000 | [diff] [blame] | 301 | dbgs() << "===== " << Name << " @ " << Filename << ":" << LineNumber << "\n"; |
Yuchen Wu | ef6909d | 2013-11-19 20:33:32 +0000 | [diff] [blame] | 302 | for (SmallVectorImpl<GCOVBlock *>::const_iterator I = Blocks.begin(), |
Bill Wendling | ea6397f | 2012-07-19 00:11:40 +0000 | [diff] [blame] | 303 | E = Blocks.end(); I != E; ++I) |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 304 | (*I)->dump(); |
| 305 | } |
| 306 | |
| 307 | /// collectLineCounts - Collect line counts. This must be used after |
| 308 | /// reading .gcno and .gcda files. |
| 309 | void GCOVFunction::collectLineCounts(FileInfo &FI) { |
Craig Topper | af0dea1 | 2013-07-04 01:31:24 +0000 | [diff] [blame] | 310 | for (SmallVectorImpl<GCOVBlock *>::iterator I = Blocks.begin(), |
Bill Wendling | ea6397f | 2012-07-19 00:11:40 +0000 | [diff] [blame] | 311 | E = Blocks.end(); I != E; ++I) |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 312 | (*I)->collectLineCounts(FI); |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 313 | FI.addFunctionLine(Filename, LineNumber, this); |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | //===----------------------------------------------------------------------===// |
| 317 | // GCOVBlock implementation. |
| 318 | |
| 319 | /// ~GCOVBlock - Delete GCOVBlock and its content. |
| 320 | GCOVBlock::~GCOVBlock() { |
Yuchen Wu | 8ad9b04 | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 321 | SrcEdges.clear(); |
| 322 | DstEdges.clear(); |
Yuchen Wu | d738bee | 2013-11-14 00:32:00 +0000 | [diff] [blame] | 323 | Lines.clear(); |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 324 | } |
| 325 | |
Yuchen Wu | 8ad9b04 | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 326 | /// addCount - Add to block counter while storing the edge count. If the |
| 327 | /// destination has no outgoing edges, also update that block's count too. |
| 328 | void GCOVBlock::addCount(size_t DstEdgeNo, uint64_t N) { |
| 329 | assert(DstEdgeNo < DstEdges.size()); // up to caller to ensure EdgeNo is valid |
| 330 | DstEdges[DstEdgeNo]->Count = N; |
| 331 | Counter += N; |
| 332 | if (!DstEdges[DstEdgeNo]->Dst->getNumDstEdges()) |
| 333 | DstEdges[DstEdgeNo]->Dst->Counter += N; |
| 334 | } |
| 335 | |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 336 | /// sortDstEdges - Sort destination edges by block number, nop if already |
| 337 | /// sorted. This is required for printing branch info in the correct order. |
| 338 | void GCOVBlock::sortDstEdges() { |
| 339 | if (!DstEdgesAreSorted) { |
| 340 | SortDstEdgesFunctor SortEdges; |
| 341 | std::stable_sort(DstEdges.begin(), DstEdges.end(), SortEdges); |
| 342 | } |
| 343 | } |
| 344 | |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 345 | /// collectLineCounts - Collect line counts. This must be used after |
| 346 | /// reading .gcno and .gcda files. |
| 347 | void GCOVBlock::collectLineCounts(FileInfo &FI) { |
Yuchen Wu | d738bee | 2013-11-14 00:32:00 +0000 | [diff] [blame] | 348 | for (SmallVectorImpl<uint32_t>::iterator I = Lines.begin(), |
Bill Wendling | ea6397f | 2012-07-19 00:11:40 +0000 | [diff] [blame] | 349 | E = Lines.end(); I != E; ++I) |
Yuchen Wu | 8f1c881 | 2013-12-03 00:38:21 +0000 | [diff] [blame] | 350 | FI.addBlockLine(Parent.getFilename(), *I, this); |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 351 | } |
| 352 | |
Yuchen Wu | 0367815 | 2013-10-25 02:22:24 +0000 | [diff] [blame] | 353 | /// dump - Dump GCOVBlock content to dbgs() for debugging purposes. |
Yuchen Wu | ef6909d | 2013-11-19 20:33:32 +0000 | [diff] [blame] | 354 | void GCOVBlock::dump() const { |
Yuchen Wu | 0367815 | 2013-10-25 02:22:24 +0000 | [diff] [blame] | 355 | dbgs() << "Block : " << Number << " Counter : " << Counter << "\n"; |
Yuchen Wu | 8ad9b04 | 2013-12-03 00:24:44 +0000 | [diff] [blame] | 356 | if (!SrcEdges.empty()) { |
| 357 | dbgs() << "\tSource Edges : "; |
| 358 | for (EdgeIterator I = SrcEdges.begin(), E = SrcEdges.end(); I != E; ++I) { |
| 359 | const GCOVEdge *Edge = *I; |
| 360 | dbgs() << Edge->Src->Number << " (" << Edge->Count << "), "; |
| 361 | } |
| 362 | dbgs() << "\n"; |
| 363 | } |
| 364 | if (!DstEdges.empty()) { |
| 365 | dbgs() << "\tDestination Edges : "; |
| 366 | for (EdgeIterator I = DstEdges.begin(), E = DstEdges.end(); I != E; ++I) { |
| 367 | const GCOVEdge *Edge = *I; |
| 368 | dbgs() << Edge->Dst->Number << " (" << Edge->Count << "), "; |
| 369 | } |
Yuchen Wu | 0367815 | 2013-10-25 02:22:24 +0000 | [diff] [blame] | 370 | dbgs() << "\n"; |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 371 | } |
| 372 | if (!Lines.empty()) { |
Yuchen Wu | 0367815 | 2013-10-25 02:22:24 +0000 | [diff] [blame] | 373 | dbgs() << "\tLines : "; |
Yuchen Wu | ef6909d | 2013-11-19 20:33:32 +0000 | [diff] [blame] | 374 | for (SmallVectorImpl<uint32_t>::const_iterator I = Lines.begin(), |
Yuchen Wu | d738bee | 2013-11-14 00:32:00 +0000 | [diff] [blame] | 375 | E = Lines.end(); I != E; ++I) |
| 376 | dbgs() << (*I) << ","; |
| 377 | dbgs() << "\n"; |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 378 | } |
| 379 | } |
| 380 | |
| 381 | //===----------------------------------------------------------------------===// |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 382 | // FileInfo implementation. |
| 383 | |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 384 | // Safe integer division, returns 0 if numerator is 0. |
| 385 | static uint32_t safeDiv(uint64_t Numerator, uint64_t Divisor) { |
| 386 | if (!Numerator) |
| 387 | return 0; |
| 388 | return Numerator/Divisor; |
| 389 | } |
| 390 | |
| 391 | // This custom division function mimics gcov's branch ouputs: |
| 392 | // - Round to closest whole number |
| 393 | // - Only output 0% or 100% if it's exactly that value |
| 394 | static uint32_t branchDiv(uint64_t Numerator, uint64_t Divisor) { |
| 395 | if (!Numerator) |
| 396 | return 0; |
| 397 | if (Numerator == Divisor) |
| 398 | return 100; |
| 399 | |
| 400 | uint8_t Res = (Numerator*100+Divisor/2) / Divisor; |
| 401 | if (Res == 0) |
| 402 | return 1; |
| 403 | if (Res == 100) |
| 404 | return 99; |
| 405 | return Res; |
| 406 | } |
| 407 | |
Yuchen Wu | 73dc381 | 2013-12-18 18:40:15 +0000 | [diff] [blame] | 408 | struct formatBranchInfo { |
| 409 | formatBranchInfo(const GCOVOptions &Options, uint64_t Count, |
| 410 | uint64_t Total) : |
| 411 | Options(Options), Count(Count), Total(Total) {} |
| 412 | |
| 413 | void print(raw_ostream &OS) const { |
| 414 | if (!Total) |
| 415 | OS << "never executed"; |
| 416 | else if (Options.BranchCount) |
| 417 | OS << "taken " << Count; |
| 418 | else |
| 419 | OS << "taken " << branchDiv(Count, Total) << "%"; |
| 420 | } |
| 421 | |
| 422 | const GCOVOptions &Options; |
| 423 | uint64_t Count; |
| 424 | uint64_t Total; |
| 425 | }; |
| 426 | |
| 427 | static raw_ostream &operator<<(raw_ostream &OS, const formatBranchInfo &FBI) { |
| 428 | FBI.print(OS); |
| 429 | return OS; |
| 430 | } |
| 431 | |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 432 | /// print - Print source files with collected line count information. |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 433 | void FileInfo::print(StringRef GCNOFile, StringRef GCDAFile) const { |
Yuchen Wu | 8f1c881 | 2013-12-03 00:38:21 +0000 | [diff] [blame] | 434 | for (StringMap<LineData>::const_iterator I = LineInfo.begin(), |
Yuchen Wu | ef6909d | 2013-11-19 20:33:32 +0000 | [diff] [blame] | 435 | E = LineInfo.end(); I != E; ++I) { |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 436 | StringRef Filename = I->first(); |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 437 | OwningPtr<MemoryBuffer> Buff; |
| 438 | if (error_code ec = MemoryBuffer::getFileOrSTDIN(Filename, Buff)) { |
| 439 | errs() << Filename << ": " << ec.message() << "\n"; |
| 440 | return; |
| 441 | } |
Benjamin Kramer | 67421c1 | 2013-11-15 09:44:17 +0000 | [diff] [blame] | 442 | StringRef AllLines = Buff->getBuffer(); |
Yuchen Wu | 8aac4f6 | 2013-11-19 20:57:20 +0000 | [diff] [blame] | 443 | |
Yuchen Wu | 9af3938 | 2013-12-05 20:45:36 +0000 | [diff] [blame] | 444 | std::string CovFilename = Filename.str() + ".gcov"; |
Yuchen Wu | 26326ad | 2013-12-03 00:57:11 +0000 | [diff] [blame] | 445 | std::string ErrorInfo; |
| 446 | raw_fd_ostream OS(CovFilename.c_str(), ErrorInfo); |
| 447 | if (!ErrorInfo.empty()) |
| 448 | errs() << ErrorInfo << "\n"; |
| 449 | |
Yuchen Wu | 8aac4f6 | 2013-11-19 20:57:20 +0000 | [diff] [blame] | 450 | OS << " -: 0:Source:" << Filename << "\n"; |
Yuchen Wu | 21517e4 | 2013-12-04 05:07:36 +0000 | [diff] [blame] | 451 | OS << " -: 0:Graph:" << GCNOFile << "\n"; |
| 452 | OS << " -: 0:Data:" << GCDAFile << "\n"; |
Yuchen Wu | 8aac4f6 | 2013-11-19 20:57:20 +0000 | [diff] [blame] | 453 | OS << " -: 0:Runs:" << RunCount << "\n"; |
| 454 | OS << " -: 0:Programs:" << ProgramCount << "\n"; |
| 455 | |
Yuchen Wu | 1c06816 | 2013-12-03 01:35:31 +0000 | [diff] [blame] | 456 | const LineData &Line = I->second; |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 457 | for (uint32_t LineIndex = 0; !AllLines.empty(); ++LineIndex) { |
Yuchen Wu | 73dc381 | 2013-12-18 18:40:15 +0000 | [diff] [blame] | 458 | if (Options.BranchInfo) { |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 459 | FunctionLines::const_iterator FuncsIt = Line.Functions.find(LineIndex); |
| 460 | if (FuncsIt != Line.Functions.end()) |
| 461 | printFunctionSummary(OS, FuncsIt->second); |
| 462 | } |
Yuchen Wu | 1c06816 | 2013-12-03 01:35:31 +0000 | [diff] [blame] | 463 | |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 464 | BlockLines::const_iterator BlocksIt = Line.Blocks.find(LineIndex); |
| 465 | if (BlocksIt == Line.Blocks.end()) { |
| 466 | // No basic blocks are on this line. Not an executable line of code. |
| 467 | OS << " -:"; |
| 468 | std::pair<StringRef, StringRef> P = AllLines.split('\n'); |
| 469 | OS << format("%5u:", LineIndex+1) << P.first << "\n"; |
| 470 | AllLines = P.second; |
| 471 | } else { |
Yuchen Wu | 8f1c881 | 2013-12-03 00:38:21 +0000 | [diff] [blame] | 472 | const BlockVector &Blocks = BlocksIt->second; |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 473 | |
| 474 | // Add up the block counts to form line counts. |
Yuchen Wu | 8f1c881 | 2013-12-03 00:38:21 +0000 | [diff] [blame] | 475 | uint64_t LineCount = 0; |
| 476 | for (BlockVector::const_iterator I = Blocks.begin(), E = Blocks.end(); |
| 477 | I != E; ++I) { |
Yuchen Wu | 8c6bb5f | 2013-12-10 01:02:07 +0000 | [diff] [blame] | 478 | const GCOVBlock *Block = *I; |
| 479 | if (Options.AllBlocks) { |
| 480 | // Only take the highest block count for that line. |
| 481 | uint64_t BlockCount = Block->getCount(); |
| 482 | LineCount = LineCount > BlockCount ? LineCount : BlockCount; |
| 483 | } else { |
| 484 | // Sum up all of the block counts. |
| 485 | LineCount += Block->getCount(); |
| 486 | } |
Yuchen Wu | 8f1c881 | 2013-12-03 00:38:21 +0000 | [diff] [blame] | 487 | } |
| 488 | if (LineCount == 0) |
Yuchen Wu | dbcf197 | 2013-11-02 00:09:17 +0000 | [diff] [blame] | 489 | OS << " #####:"; |
Yuchen Wu | 48342ee | 2013-10-23 19:45:03 +0000 | [diff] [blame] | 490 | else |
Yuchen Wu | 8f1c881 | 2013-12-03 00:38:21 +0000 | [diff] [blame] | 491 | OS << format("%9" PRIu64 ":", LineCount); |
Yuchen Wu | 8c6bb5f | 2013-12-10 01:02:07 +0000 | [diff] [blame] | 492 | |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 493 | std::pair<StringRef, StringRef> P = AllLines.split('\n'); |
| 494 | OS << format("%5u:", LineIndex+1) << P.first << "\n"; |
| 495 | AllLines = P.second; |
| 496 | |
Yuchen Wu | 8c6bb5f | 2013-12-10 01:02:07 +0000 | [diff] [blame] | 497 | uint32_t BlockNo = 0; |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 498 | uint32_t EdgeNo = 0; |
Yuchen Wu | 8c6bb5f | 2013-12-10 01:02:07 +0000 | [diff] [blame] | 499 | for (BlockVector::const_iterator I = Blocks.begin(), E = Blocks.end(); |
| 500 | I != E; ++I) { |
| 501 | const GCOVBlock *Block = *I; |
Yuchen Wu | 8c6bb5f | 2013-12-10 01:02:07 +0000 | [diff] [blame] | 502 | |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 503 | // Only print block and branch information at the end of the block. |
| 504 | if (Block->getLastLine() != LineIndex+1) |
| 505 | continue; |
| 506 | if (Options.AllBlocks) |
| 507 | printBlockInfo(OS, *Block, LineIndex, BlockNo); |
Yuchen Wu | 73dc381 | 2013-12-18 18:40:15 +0000 | [diff] [blame] | 508 | if (Options.BranchInfo) { |
Yuchen Wu | 66d93b8 | 2013-12-16 22:14:02 +0000 | [diff] [blame] | 509 | size_t NumEdges = Block->getNumDstEdges(); |
| 510 | if (NumEdges > 1) |
| 511 | printBranchInfo(OS, *Block, EdgeNo); |
| 512 | else if (Options.UncondBranch && NumEdges == 1) |
| 513 | printUncondBranchInfo(OS, EdgeNo, (*Block->dst_begin())->Count); |
| 514 | } |
Yuchen Wu | 8c6bb5f | 2013-12-10 01:02:07 +0000 | [diff] [blame] | 515 | } |
| 516 | } |
Devang Patel | 3714065 | 2011-09-28 18:50:00 +0000 | [diff] [blame] | 517 | } |
| 518 | } |
| 519 | } |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 520 | |
| 521 | /// printFunctionSummary - Print function and block summary. |
| 522 | void FileInfo::printFunctionSummary(raw_fd_ostream &OS, |
| 523 | const FunctionVector &Funcs) const { |
| 524 | for (FunctionVector::const_iterator I = Funcs.begin(), E = Funcs.end(); |
| 525 | I != E; ++I) { |
| 526 | const GCOVFunction *Func = *I; |
| 527 | uint64_t EntryCount = Func->getEntryCount(); |
Yuchen Wu | c9b2dcd | 2013-12-18 18:46:25 +0000 | [diff] [blame^] | 528 | uint32_t BlocksExec = 0; |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 529 | for (GCOVFunction::BlockIterator I = Func->block_begin(), |
| 530 | E = Func->block_end(); I != E; ++I) { |
| 531 | const GCOVBlock *Block = *I; |
| 532 | if (Block->getNumDstEdges() && Block->getCount()) |
Yuchen Wu | c9b2dcd | 2013-12-18 18:46:25 +0000 | [diff] [blame^] | 533 | ++BlocksExec; |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 534 | } |
| 535 | |
| 536 | OS << "function " << Func->getName() << " called " << EntryCount |
| 537 | << " returned " << safeDiv(Func->getExitCount()*100, EntryCount) |
| 538 | << "% blocks executed " |
Yuchen Wu | c9b2dcd | 2013-12-18 18:46:25 +0000 | [diff] [blame^] | 539 | << safeDiv(BlocksExec*100, Func->getNumBlocks()-1) << "%\n"; |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 540 | } |
| 541 | } |
| 542 | |
| 543 | /// printBlockInfo - Output counts for each block. |
| 544 | void FileInfo::printBlockInfo(raw_fd_ostream &OS, const GCOVBlock &Block, |
| 545 | uint32_t LineIndex, uint32_t &BlockNo) const { |
| 546 | if (Block.getCount() == 0) |
| 547 | OS << " $$$$$:"; |
| 548 | else |
| 549 | OS << format("%9" PRIu64 ":", Block.getCount()); |
| 550 | OS << format("%5u-block %2u\n", LineIndex+1, BlockNo++); |
| 551 | } |
| 552 | |
Yuchen Wu | 66d93b8 | 2013-12-16 22:14:02 +0000 | [diff] [blame] | 553 | /// printBranchInfo - Print conditional branch probabilities. |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 554 | void FileInfo::printBranchInfo(raw_fd_ostream &OS, const GCOVBlock &Block, |
Yuchen Wu | 66d93b8 | 2013-12-16 22:14:02 +0000 | [diff] [blame] | 555 | uint32_t &EdgeNo) const { |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 556 | SmallVector<uint64_t, 16> BranchCounts; |
| 557 | uint64_t TotalCounts = 0; |
| 558 | for (GCOVBlock::EdgeIterator I = Block.dst_begin(), E = Block.dst_end(); |
| 559 | I != E; ++I) { |
| 560 | const GCOVEdge *Edge = *I; |
| 561 | BranchCounts.push_back(Edge->Count); |
| 562 | TotalCounts += Edge->Count; |
| 563 | } |
| 564 | |
| 565 | for (SmallVectorImpl<uint64_t>::const_iterator I = BranchCounts.begin(), |
| 566 | E = BranchCounts.end(); I != E; ++I) { |
Yuchen Wu | 73dc381 | 2013-12-18 18:40:15 +0000 | [diff] [blame] | 567 | OS << format("branch %2u ", EdgeNo++) |
| 568 | << formatBranchInfo(Options, *I, TotalCounts) << "\n"; |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 569 | } |
| 570 | } |
Yuchen Wu | 66d93b8 | 2013-12-16 22:14:02 +0000 | [diff] [blame] | 571 | |
| 572 | /// printUncondBranchInfo - Print unconditional branch probabilities. |
| 573 | void FileInfo::printUncondBranchInfo(raw_fd_ostream &OS, uint32_t &EdgeNo, |
| 574 | uint64_t Count) const { |
Yuchen Wu | 73dc381 | 2013-12-18 18:40:15 +0000 | [diff] [blame] | 575 | OS << format("unconditional %2u ", EdgeNo++) |
| 576 | << formatBranchInfo(Options, Count, Count) << "\n"; |
Yuchen Wu | 66d93b8 | 2013-12-16 22:14:02 +0000 | [diff] [blame] | 577 | } |