1 //===- CoverageMapping.cpp - Code coverage mapping support ------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file contains support for clang's and llvm's instrumentation based 11 // code coverage. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "llvm/ProfileData/Coverage/CoverageMapping.h" 16 #include "llvm/ADT/ArrayRef.h" 17 #include "llvm/ADT/DenseMap.h" 18 #include "llvm/ADT/None.h" 19 #include "llvm/ADT/Optional.h" 20 #include "llvm/ADT/SmallBitVector.h" 21 #include "llvm/ADT/SmallVector.h" 22 #include "llvm/ADT/StringRef.h" 23 #include "llvm/ProfileData/Coverage/CoverageMappingReader.h" 24 #include "llvm/ProfileData/InstrProfReader.h" 25 #include "llvm/Support/Debug.h" 26 #include "llvm/Support/Errc.h" 27 #include "llvm/Support/Error.h" 28 #include "llvm/Support/ErrorHandling.h" 29 #include "llvm/Support/ManagedStatic.h" 30 #include "llvm/Support/MemoryBuffer.h" 31 #include "llvm/Support/raw_ostream.h" 32 #include <algorithm> 33 #include <cassert> 34 #include <cstdint> 35 #include <iterator> 36 #include <memory> 37 #include <string> 38 #include <system_error> 39 #include <utility> 40 #include <vector> 41 42 using namespace llvm; 43 using namespace coverage; 44 45 #define DEBUG_TYPE "coverage-mapping" 46 47 Counter CounterExpressionBuilder::get(const CounterExpression &E) { 48 auto It = ExpressionIndices.find(E); 49 if (It != ExpressionIndices.end()) 50 return Counter::getExpression(It->second); 51 unsigned I = Expressions.size(); 52 Expressions.push_back(E); 53 ExpressionIndices[E] = I; 54 return Counter::getExpression(I); 55 } 56 57 void CounterExpressionBuilder::extractTerms( 58 Counter C, int Sign, SmallVectorImpl<std::pair<unsigned, int>> &Terms) { 59 switch (C.getKind()) { 60 case Counter::Zero: 61 break; 62 case Counter::CounterValueReference: 63 Terms.push_back(std::make_pair(C.getCounterID(), Sign)); 64 break; 65 case Counter::Expression: 66 const auto &E = Expressions[C.getExpressionID()]; 67 extractTerms(E.LHS, Sign, Terms); 68 extractTerms(E.RHS, E.Kind == CounterExpression::Subtract ? -Sign : Sign, 69 Terms); 70 break; 71 } 72 } 73 74 Counter CounterExpressionBuilder::simplify(Counter ExpressionTree) { 75 // Gather constant terms. 76 SmallVector<std::pair<unsigned, int>, 32> Terms; 77 extractTerms(ExpressionTree, +1, Terms); 78 79 // If there are no terms, this is just a zero. The algorithm below assumes at 80 // least one term. 81 if (Terms.size() == 0) 82 return Counter::getZero(); 83 84 // Group the terms by counter ID. 85 std::sort(Terms.begin(), Terms.end(), 86 [](const std::pair<unsigned, int> &LHS, 87 const std::pair<unsigned, int> &RHS) { 88 return LHS.first < RHS.first; 89 }); 90 91 // Combine terms by counter ID to eliminate counters that sum to zero. 92 auto Prev = Terms.begin(); 93 for (auto I = Prev + 1, E = Terms.end(); I != E; ++I) { 94 if (I->first == Prev->first) { 95 Prev->second += I->second; 96 continue; 97 } 98 ++Prev; 99 *Prev = *I; 100 } 101 Terms.erase(++Prev, Terms.end()); 102 103 Counter C; 104 // Create additions. We do this before subtractions to avoid constructs like 105 // ((0 - X) + Y), as opposed to (Y - X). 106 for (auto Term : Terms) { 107 if (Term.second <= 0) 108 continue; 109 for (int I = 0; I < Term.second; ++I) 110 if (C.isZero()) 111 C = Counter::getCounter(Term.first); 112 else 113 C = get(CounterExpression(CounterExpression::Add, C, 114 Counter::getCounter(Term.first))); 115 } 116 117 // Create subtractions. 118 for (auto Term : Terms) { 119 if (Term.second >= 0) 120 continue; 121 for (int I = 0; I < -Term.second; ++I) 122 C = get(CounterExpression(CounterExpression::Subtract, C, 123 Counter::getCounter(Term.first))); 124 } 125 return C; 126 } 127 128 Counter CounterExpressionBuilder::add(Counter LHS, Counter RHS) { 129 return simplify(get(CounterExpression(CounterExpression::Add, LHS, RHS))); 130 } 131 132 Counter CounterExpressionBuilder::subtract(Counter LHS, Counter RHS) { 133 return simplify( 134 get(CounterExpression(CounterExpression::Subtract, LHS, RHS))); 135 } 136 137 void CounterMappingContext::dump(const Counter &C, raw_ostream &OS) const { 138 switch (C.getKind()) { 139 case Counter::Zero: 140 OS << '0'; 141 return; 142 case Counter::CounterValueReference: 143 OS << '#' << C.getCounterID(); 144 break; 145 case Counter::Expression: { 146 if (C.getExpressionID() >= Expressions.size()) 147 return; 148 const auto &E = Expressions[C.getExpressionID()]; 149 OS << '('; 150 dump(E.LHS, OS); 151 OS << (E.Kind == CounterExpression::Subtract ? " - " : " + "); 152 dump(E.RHS, OS); 153 OS << ')'; 154 break; 155 } 156 } 157 if (CounterValues.empty()) 158 return; 159 Expected<int64_t> Value = evaluate(C); 160 if (auto E = Value.takeError()) { 161 consumeError(std::move(E)); 162 return; 163 } 164 OS << '[' << *Value << ']'; 165 } 166 167 Expected<int64_t> CounterMappingContext::evaluate(const Counter &C) const { 168 switch (C.getKind()) { 169 case Counter::Zero: 170 return 0; 171 case Counter::CounterValueReference: 172 if (C.getCounterID() >= CounterValues.size()) 173 return errorCodeToError(errc::argument_out_of_domain); 174 return CounterValues[C.getCounterID()]; 175 case Counter::Expression: { 176 if (C.getExpressionID() >= Expressions.size()) 177 return errorCodeToError(errc::argument_out_of_domain); 178 const auto &E = Expressions[C.getExpressionID()]; 179 Expected<int64_t> LHS = evaluate(E.LHS); 180 if (!LHS) 181 return LHS; 182 Expected<int64_t> RHS = evaluate(E.RHS); 183 if (!RHS) 184 return RHS; 185 return E.Kind == CounterExpression::Subtract ? *LHS - *RHS : *LHS + *RHS; 186 } 187 } 188 llvm_unreachable("Unhandled CounterKind"); 189 } 190 191 void FunctionRecordIterator::skipOtherFiles() { 192 while (Current != Records.end() && !Filename.empty() && 193 Filename != Current->Filenames[0]) 194 ++Current; 195 if (Current == Records.end()) 196 *this = FunctionRecordIterator(); 197 } 198 199 Error CoverageMapping::loadFunctionRecord( 200 const CoverageMappingRecord &Record, 201 IndexedInstrProfReader &ProfileReader) { 202 StringRef OrigFuncName = Record.FunctionName; 203 if (OrigFuncName.empty()) 204 return make_error<CoverageMapError>(coveragemap_error::malformed); 205 206 if (Record.Filenames.empty()) 207 OrigFuncName = getFuncNameWithoutPrefix(OrigFuncName); 208 else 209 OrigFuncName = getFuncNameWithoutPrefix(OrigFuncName, Record.Filenames[0]); 210 211 // Don't load records for functions we've already seen. 212 if (!FunctionNames.insert(OrigFuncName).second) 213 return Error::success(); 214 215 CounterMappingContext Ctx(Record.Expressions); 216 217 std::vector<uint64_t> Counts; 218 if (Error E = ProfileReader.getFunctionCounts(Record.FunctionName, 219 Record.FunctionHash, Counts)) { 220 instrprof_error IPE = InstrProfError::take(std::move(E)); 221 if (IPE == instrprof_error::hash_mismatch) { 222 MismatchedFunctionCount++; 223 return Error::success(); 224 } else if (IPE != instrprof_error::unknown_function) 225 return make_error<InstrProfError>(IPE); 226 Counts.assign(Record.MappingRegions.size(), 0); 227 } 228 Ctx.setCounts(Counts); 229 230 assert(!Record.MappingRegions.empty() && "Function has no regions"); 231 232 FunctionRecord Function(OrigFuncName, Record.Filenames); 233 for (const auto &Region : Record.MappingRegions) { 234 Expected<int64_t> ExecutionCount = Ctx.evaluate(Region.Count); 235 if (auto E = ExecutionCount.takeError()) { 236 consumeError(std::move(E)); 237 return Error::success(); 238 } 239 Function.pushRegion(Region, *ExecutionCount); 240 } 241 if (Function.CountedRegions.size() != Record.MappingRegions.size()) { 242 MismatchedFunctionCount++; 243 return Error::success(); 244 } 245 246 Functions.push_back(std::move(Function)); 247 return Error::success(); 248 } 249 250 Expected<std::unique_ptr<CoverageMapping>> 251 CoverageMapping::load(CoverageMappingReader &CoverageReader, 252 IndexedInstrProfReader &ProfileReader) { 253 auto Coverage = std::unique_ptr<CoverageMapping>(new CoverageMapping()); 254 255 for (const auto &Record : CoverageReader) 256 if (Error E = Coverage->loadFunctionRecord(Record, ProfileReader)) 257 return std::move(E); 258 259 return std::move(Coverage); 260 } 261 262 Expected<std::unique_ptr<CoverageMapping>> CoverageMapping::load( 263 ArrayRef<std::unique_ptr<CoverageMappingReader>> CoverageReaders, 264 IndexedInstrProfReader &ProfileReader) { 265 auto Coverage = std::unique_ptr<CoverageMapping>(new CoverageMapping()); 266 267 for (const auto &CoverageReader : CoverageReaders) 268 for (const auto &Record : *CoverageReader) 269 if (Error E = Coverage->loadFunctionRecord(Record, ProfileReader)) 270 return std::move(E); 271 272 return std::move(Coverage); 273 } 274 275 Expected<std::unique_ptr<CoverageMapping>> 276 CoverageMapping::load(ArrayRef<StringRef> ObjectFilenames, 277 StringRef ProfileFilename, StringRef Arch) { 278 auto ProfileReaderOrErr = IndexedInstrProfReader::create(ProfileFilename); 279 if (Error E = ProfileReaderOrErr.takeError()) 280 return std::move(E); 281 auto ProfileReader = std::move(ProfileReaderOrErr.get()); 282 283 SmallVector<std::unique_ptr<CoverageMappingReader>, 4> Readers; 284 SmallVector<std::unique_ptr<MemoryBuffer>, 4> Buffers; 285 for (StringRef ObjectFilename : ObjectFilenames) { 286 auto CovMappingBufOrErr = MemoryBuffer::getFileOrSTDIN(ObjectFilename); 287 if (std::error_code EC = CovMappingBufOrErr.getError()) 288 return errorCodeToError(EC); 289 auto CoverageReaderOrErr = 290 BinaryCoverageReader::create(CovMappingBufOrErr.get(), Arch); 291 if (Error E = CoverageReaderOrErr.takeError()) 292 return std::move(E); 293 Readers.push_back(std::move(CoverageReaderOrErr.get())); 294 Buffers.push_back(std::move(CovMappingBufOrErr.get())); 295 } 296 return load(Readers, *ProfileReader); 297 } 298 299 namespace { 300 301 /// \brief Distributes functions into instantiation sets. 302 /// 303 /// An instantiation set is a collection of functions that have the same source 304 /// code, ie, template functions specializations. 305 class FunctionInstantiationSetCollector { 306 typedef DenseMap<std::pair<unsigned, unsigned>, 307 std::vector<const FunctionRecord *>> MapT; 308 MapT InstantiatedFunctions; 309 310 public: 311 void insert(const FunctionRecord &Function, unsigned FileID) { 312 auto I = Function.CountedRegions.begin(), E = Function.CountedRegions.end(); 313 while (I != E && I->FileID != FileID) 314 ++I; 315 assert(I != E && "function does not cover the given file"); 316 auto &Functions = InstantiatedFunctions[I->startLoc()]; 317 Functions.push_back(&Function); 318 } 319 320 MapT::iterator begin() { return InstantiatedFunctions.begin(); } 321 322 MapT::iterator end() { return InstantiatedFunctions.end(); } 323 }; 324 325 class SegmentBuilder { 326 std::vector<CoverageSegment> &Segments; 327 SmallVector<const CountedRegion *, 8> ActiveRegions; 328 329 SegmentBuilder(std::vector<CoverageSegment> &Segments) : Segments(Segments) {} 330 331 /// Start a segment with no count specified. 332 void startSegment(unsigned Line, unsigned Col) { 333 DEBUG(dbgs() << "Top level segment at " << Line << ":" << Col << "\n"); 334 Segments.emplace_back(Line, Col, /*IsRegionEntry=*/false); 335 } 336 337 /// Start a segment with the given Region's count. 338 void startSegment(unsigned Line, unsigned Col, bool IsRegionEntry, 339 const CountedRegion &Region) { 340 // Avoid creating empty regions. 341 if (!Segments.empty() && Segments.back().Line == Line && 342 Segments.back().Col == Col) 343 Segments.pop_back(); 344 DEBUG(dbgs() << "Segment at " << Line << ":" << Col); 345 // Set this region's count. 346 if (Region.Kind != CounterMappingRegion::SkippedRegion) { 347 DEBUG(dbgs() << " with count " << Region.ExecutionCount); 348 Segments.emplace_back(Line, Col, Region.ExecutionCount, IsRegionEntry); 349 } else 350 Segments.emplace_back(Line, Col, IsRegionEntry); 351 DEBUG(dbgs() << "\n"); 352 } 353 354 /// Start a segment for the given region. 355 void startSegment(const CountedRegion &Region) { 356 startSegment(Region.LineStart, Region.ColumnStart, true, Region); 357 } 358 359 /// Pop the top region off of the active stack, starting a new segment with 360 /// the containing Region's count. 361 void popRegion() { 362 const CountedRegion *Active = ActiveRegions.back(); 363 unsigned Line = Active->LineEnd, Col = Active->ColumnEnd; 364 ActiveRegions.pop_back(); 365 if (ActiveRegions.empty()) 366 startSegment(Line, Col); 367 else 368 startSegment(Line, Col, false, *ActiveRegions.back()); 369 } 370 371 void buildSegmentsImpl(ArrayRef<CountedRegion> Regions) { 372 for (const auto &Region : Regions) { 373 // Pop any regions that end before this one starts. 374 while (!ActiveRegions.empty() && 375 ActiveRegions.back()->endLoc() <= Region.startLoc()) 376 popRegion(); 377 // Add this region to the stack. 378 ActiveRegions.push_back(&Region); 379 startSegment(Region); 380 } 381 // Pop any regions that are left in the stack. 382 while (!ActiveRegions.empty()) 383 popRegion(); 384 } 385 386 /// Sort a nested sequence of regions from a single file. 387 static void sortNestedRegions(MutableArrayRef<CountedRegion> Regions) { 388 std::sort(Regions.begin(), Regions.end(), [](const CountedRegion &LHS, 389 const CountedRegion &RHS) { 390 if (LHS.startLoc() != RHS.startLoc()) 391 return LHS.startLoc() < RHS.startLoc(); 392 if (LHS.endLoc() != RHS.endLoc()) 393 // When LHS completely contains RHS, we sort LHS first. 394 return RHS.endLoc() < LHS.endLoc(); 395 // If LHS and RHS cover the same area, we need to sort them according 396 // to their kinds so that the most suitable region will become "active" 397 // in combineRegions(). Because we accumulate counter values only from 398 // regions of the same kind as the first region of the area, prefer 399 // CodeRegion to ExpansionRegion and ExpansionRegion to SkippedRegion. 400 static_assert(CounterMappingRegion::CodeRegion < 401 CounterMappingRegion::ExpansionRegion && 402 CounterMappingRegion::ExpansionRegion < 403 CounterMappingRegion::SkippedRegion, 404 "Unexpected order of region kind values"); 405 return LHS.Kind < RHS.Kind; 406 }); 407 } 408 409 /// Combine counts of regions which cover the same area. 410 static ArrayRef<CountedRegion> 411 combineRegions(MutableArrayRef<CountedRegion> Regions) { 412 if (Regions.empty()) 413 return Regions; 414 auto Active = Regions.begin(); 415 auto End = Regions.end(); 416 for (auto I = Regions.begin() + 1; I != End; ++I) { 417 if (Active->startLoc() != I->startLoc() || 418 Active->endLoc() != I->endLoc()) { 419 // Shift to the next region. 420 ++Active; 421 if (Active != I) 422 *Active = *I; 423 continue; 424 } 425 // Merge duplicate region. 426 // If CodeRegions and ExpansionRegions cover the same area, it's probably 427 // a macro which is fully expanded to another macro. In that case, we need 428 // to accumulate counts only from CodeRegions, or else the area will be 429 // counted twice. 430 // On the other hand, a macro may have a nested macro in its body. If the 431 // outer macro is used several times, the ExpansionRegion for the nested 432 // macro will also be added several times. These ExpansionRegions cover 433 // the same source locations and have to be combined to reach the correct 434 // value for that area. 435 // We add counts of the regions of the same kind as the active region 436 // to handle the both situations. 437 if (I->Kind == Active->Kind) 438 Active->ExecutionCount += I->ExecutionCount; 439 } 440 return Regions.drop_back(std::distance(++Active, End)); 441 } 442 443 public: 444 /// Build a list of CoverageSegments from a list of Regions. 445 static std::vector<CoverageSegment> 446 buildSegments(MutableArrayRef<CountedRegion> Regions) { 447 std::vector<CoverageSegment> Segments; 448 SegmentBuilder Builder(Segments); 449 450 sortNestedRegions(Regions); 451 ArrayRef<CountedRegion> CombinedRegions = combineRegions(Regions); 452 453 Builder.buildSegmentsImpl(CombinedRegions); 454 return Segments; 455 } 456 }; 457 458 } // end anonymous namespace 459 460 std::vector<StringRef> CoverageMapping::getUniqueSourceFiles() const { 461 std::vector<StringRef> Filenames; 462 for (const auto &Function : getCoveredFunctions()) 463 Filenames.insert(Filenames.end(), Function.Filenames.begin(), 464 Function.Filenames.end()); 465 std::sort(Filenames.begin(), Filenames.end()); 466 auto Last = std::unique(Filenames.begin(), Filenames.end()); 467 Filenames.erase(Last, Filenames.end()); 468 return Filenames; 469 } 470 471 static SmallBitVector gatherFileIDs(StringRef SourceFile, 472 const FunctionRecord &Function) { 473 SmallBitVector FilenameEquivalence(Function.Filenames.size(), false); 474 for (unsigned I = 0, E = Function.Filenames.size(); I < E; ++I) 475 if (SourceFile == Function.Filenames[I]) 476 FilenameEquivalence[I] = true; 477 return FilenameEquivalence; 478 } 479 480 /// Return the ID of the file where the definition of the function is located. 481 static Optional<unsigned> findMainViewFileID(const FunctionRecord &Function) { 482 SmallBitVector IsNotExpandedFile(Function.Filenames.size(), true); 483 for (const auto &CR : Function.CountedRegions) 484 if (CR.Kind == CounterMappingRegion::ExpansionRegion) 485 IsNotExpandedFile[CR.ExpandedFileID] = false; 486 int I = IsNotExpandedFile.find_first(); 487 if (I == -1) 488 return None; 489 return I; 490 } 491 492 /// Check if SourceFile is the file that contains the definition of 493 /// the Function. Return the ID of the file in that case or None otherwise. 494 static Optional<unsigned> findMainViewFileID(StringRef SourceFile, 495 const FunctionRecord &Function) { 496 Optional<unsigned> I = findMainViewFileID(Function); 497 if (I && SourceFile == Function.Filenames[*I]) 498 return I; 499 return None; 500 } 501 502 static bool isExpansion(const CountedRegion &R, unsigned FileID) { 503 return R.Kind == CounterMappingRegion::ExpansionRegion && R.FileID == FileID; 504 } 505 506 CoverageData CoverageMapping::getCoverageForFile(StringRef Filename) const { 507 CoverageData FileCoverage(Filename); 508 std::vector<CountedRegion> Regions; 509 510 for (const auto &Function : Functions) { 511 auto MainFileID = findMainViewFileID(Filename, Function); 512 auto FileIDs = gatherFileIDs(Filename, Function); 513 for (const auto &CR : Function.CountedRegions) 514 if (FileIDs.test(CR.FileID)) { 515 Regions.push_back(CR); 516 if (MainFileID && isExpansion(CR, *MainFileID)) 517 FileCoverage.Expansions.emplace_back(CR, Function); 518 } 519 } 520 521 DEBUG(dbgs() << "Emitting segments for file: " << Filename << "\n"); 522 FileCoverage.Segments = SegmentBuilder::buildSegments(Regions); 523 524 return FileCoverage; 525 } 526 527 std::vector<const FunctionRecord *> 528 CoverageMapping::getInstantiations(StringRef Filename) const { 529 FunctionInstantiationSetCollector InstantiationSetCollector; 530 for (const auto &Function : Functions) { 531 auto MainFileID = findMainViewFileID(Filename, Function); 532 if (!MainFileID) 533 continue; 534 InstantiationSetCollector.insert(Function, *MainFileID); 535 } 536 537 std::vector<const FunctionRecord *> Result; 538 for (const auto &InstantiationSet : InstantiationSetCollector) { 539 if (InstantiationSet.second.size() < 2) 540 continue; 541 Result.insert(Result.end(), InstantiationSet.second.begin(), 542 InstantiationSet.second.end()); 543 } 544 return Result; 545 } 546 547 CoverageData 548 CoverageMapping::getCoverageForFunction(const FunctionRecord &Function) const { 549 auto MainFileID = findMainViewFileID(Function); 550 if (!MainFileID) 551 return CoverageData(); 552 553 CoverageData FunctionCoverage(Function.Filenames[*MainFileID]); 554 std::vector<CountedRegion> Regions; 555 for (const auto &CR : Function.CountedRegions) 556 if (CR.FileID == *MainFileID) { 557 Regions.push_back(CR); 558 if (isExpansion(CR, *MainFileID)) 559 FunctionCoverage.Expansions.emplace_back(CR, Function); 560 } 561 562 DEBUG(dbgs() << "Emitting segments for function: " << Function.Name << "\n"); 563 FunctionCoverage.Segments = SegmentBuilder::buildSegments(Regions); 564 565 return FunctionCoverage; 566 } 567 568 CoverageData CoverageMapping::getCoverageForExpansion( 569 const ExpansionRecord &Expansion) const { 570 CoverageData ExpansionCoverage( 571 Expansion.Function.Filenames[Expansion.FileID]); 572 std::vector<CountedRegion> Regions; 573 for (const auto &CR : Expansion.Function.CountedRegions) 574 if (CR.FileID == Expansion.FileID) { 575 Regions.push_back(CR); 576 if (isExpansion(CR, Expansion.FileID)) 577 ExpansionCoverage.Expansions.emplace_back(CR, Expansion.Function); 578 } 579 580 DEBUG(dbgs() << "Emitting segments for expansion of file " << Expansion.FileID 581 << "\n"); 582 ExpansionCoverage.Segments = SegmentBuilder::buildSegments(Regions); 583 584 return ExpansionCoverage; 585 } 586 587 static std::string getCoverageMapErrString(coveragemap_error Err) { 588 switch (Err) { 589 case coveragemap_error::success: 590 return "Success"; 591 case coveragemap_error::eof: 592 return "End of File"; 593 case coveragemap_error::no_data_found: 594 return "No coverage data found"; 595 case coveragemap_error::unsupported_version: 596 return "Unsupported coverage format version"; 597 case coveragemap_error::truncated: 598 return "Truncated coverage data"; 599 case coveragemap_error::malformed: 600 return "Malformed coverage data"; 601 } 602 llvm_unreachable("A value of coveragemap_error has no message."); 603 } 604 605 namespace { 606 607 // FIXME: This class is only here to support the transition to llvm::Error. It 608 // will be removed once this transition is complete. Clients should prefer to 609 // deal with the Error value directly, rather than converting to error_code. 610 class CoverageMappingErrorCategoryType : public std::error_category { 611 const char *name() const noexcept override { return "llvm.coveragemap"; } 612 std::string message(int IE) const override { 613 return getCoverageMapErrString(static_cast<coveragemap_error>(IE)); 614 } 615 }; 616 617 } // end anonymous namespace 618 619 std::string CoverageMapError::message() const { 620 return getCoverageMapErrString(Err); 621 } 622 623 static ManagedStatic<CoverageMappingErrorCategoryType> ErrorCategory; 624 625 const std::error_category &llvm::coverage::coveragemap_category() { 626 return *ErrorCategory; 627 } 628 629 char CoverageMapError::ID = 0; 630