blob: 809656ee1a192a54c0ac1a59fc29edd17daad0bc (
plain) (
blame)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
//===-- Statistics.cpp ----------------------------------------------------===//
//
// The KLEE Symbolic Virtual Machine
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "klee/Statistics/Statistics.h"
#include <vector>
using namespace klee;
StatisticManager::StatisticManager()
: enabled(true),
globalStats(0),
indexedStats(0),
contextStats(0),
index(0) {
}
StatisticManager::~StatisticManager() {
delete[] globalStats;
delete[] indexedStats;
}
void StatisticManager::useIndexedStats(unsigned totalIndices) {
delete[] indexedStats;
indexedStats = new uint64_t[totalIndices * stats.size()];
memset(indexedStats, 0, sizeof(*indexedStats) * totalIndices * stats.size());
}
void StatisticManager::registerStatistic(Statistic &s) {
delete[] globalStats;
s.id = stats.size();
stats.push_back(&s);
globalStats = new uint64_t[stats.size()];
memset(globalStats, 0, sizeof(*globalStats)*stats.size());
}
int StatisticManager::getStatisticID(const std::string &name) const {
for (unsigned i=0; i<stats.size(); i++)
if (stats[i]->getName() == name)
return i;
return -1;
}
Statistic *StatisticManager::getStatisticByName(const std::string &name) const {
for (unsigned i=0; i<stats.size(); i++)
if (stats[i]->getName() == name)
return stats[i];
return 0;
}
StatisticManager *klee::theStatisticManager = 0;
static StatisticManager &getStatisticManager() {
static StatisticManager sm;
theStatisticManager = &sm;
return sm;
}
/* *** */
Statistic::Statistic(const std::string &name, const std::string &shortName)
: name{name}, shortName{shortName} {
getStatisticManager().registerStatistic(*this);
}
Statistic &Statistic::operator+=(std::uint64_t addend) {
theStatisticManager->incrementStatistic(*this, addend);
return *this;
}
std::uint64_t Statistic::getValue() const {
return theStatisticManager->getValue(*this);
}
|