forked from mockingbirdnest/Principia
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunction_registry.cpp
42 lines (34 loc) · 1.28 KB
/
function_registry.cpp
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
#include "nanobenchmarks/function_registry.hpp"
#include <functional>
#include <map>
#include <string>
#include "glog/logging.h"
namespace principia {
namespace nanobenchmarks {
namespace _function_registry {
namespace internal {
bool FunctionRegistry::Register(std::string_view name,
BenchmarkedFunction function) {
CHECK(singleton_.names_by_function_.emplace(function, name).second)
<< " Registering function " << function << " as " << name << ": "
<< "function already registered as "
<< singleton_.names_by_function_[function];
CHECK(singleton_.functions_by_name_.emplace(name, function).second)
<< " Registering function " << function << " as " << name << ": "
<< " name already taken by "
<< singleton_.functions_by_name_.find(name)->second;
return true;
}
FunctionRegistry& FunctionRegistry::singleton_ = *new FunctionRegistry();
std::map<std::string, BenchmarkedFunction, std::less<>> const&
FunctionRegistry::functions_by_name() {
return singleton_.functions_by_name_;
}
std::map<BenchmarkedFunction, std::string> const&
FunctionRegistry::names_by_function() {
return singleton_.names_by_function_;
}
} // namespace internal
} // namespace _function_registry
} // namespace nanobenchmarks
} // namespace principia