summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-cov/SourceCoverageDataManager.cpp
blob: 03382b266e7833ebee12cc68b450f620255e09eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//===- SourceCoverageDataManager.cpp - Manager for source file coverage
// data-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This class separates and merges mapping regions for a specific source file.
//
//===----------------------------------------------------------------------===//

#include "SourceCoverageDataManager.h"

using namespace llvm;
using namespace coverage;

void SourceCoverageDataManager::insert(const MappingRegion &Region) {
  SourceRange Range(Region.LineStart, Region.ColumnStart, Region.LineEnd,
                    Region.ColumnEnd);
  if (Region.Kind == CounterMappingRegion::SkippedRegion) {
    SkippedRegions.push_back(Range);
    return;
  }
  Regions.push_back(std::make_pair(Range, Region.ExecutionCount));
}

ArrayRef<std::pair<SourceCoverageDataManager::SourceRange, uint64_t>>
SourceCoverageDataManager::getSourceRegions() {
  if (Uniqued || Regions.size() <= 1)
    return Regions;

  // Sort.
  std::sort(Regions.begin(), Regions.end(),
            [](const std::pair<SourceRange, uint64_t> &LHS,
               const std::pair<SourceRange, uint64_t> &RHS) {
    return LHS.first < RHS.first;
  });

  // Merge duplicate source ranges and sum their execution counts.
  auto Prev = Regions.begin();
  for (auto I = Prev + 1, E = Regions.end(); I != E; ++I) {
    if (I->first == Prev->first) {
      Prev->second += I->second;
      continue;
    }
    ++Prev;
    *Prev = *I;
  }
  ++Prev;
  Regions.erase(Prev, Regions.end());

  Uniqued = true;
  return Regions;
}
OpenPOWER on IntegriCloud