-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbench_pugixml_byref_by_val.cpp
49 lines (39 loc) · 1.36 KB
/
bench_pugixml_byref_by_val.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
43
44
45
46
47
48
49
#include <benchmark/benchmark.h>
#include <pugixml.hpp>
#include <stdexcept>
std::string byVal(pugi::xml_node node) {
return node.name();
}
std::string byRef(const pugi::xml_node& node) {
return node.name();
}
static void BM_ByVal(benchmark::State& state) {
pugi::xml_document doc;
pugi::xml_parse_result result = doc.load_string("<mesh name='sphere'><bounds>0 0 1 1</bounds></mesh><node id='123'>text</node><!-- comment -->",
pugi::parse_default | pugi::parse_comments);
if (!result) {
throw std::runtime_error("Failed to parse");
}
// Get a node, modify its name
pugi::xml_node node = doc.child("node");
for (auto _ : state) {
std::string name = byVal(node);
benchmark::DoNotOptimize(name);
}
}
static void BM_ByRef(benchmark::State& state) {
pugi::xml_document doc;
pugi::xml_parse_result result = doc.load_string("<mesh name='sphere'><bounds>0 0 1 1</bounds></mesh><node id='123'>text</node><!-- comment -->",
pugi::parse_default | pugi::parse_comments);
if (!result) {
throw std::runtime_error("Failed to parse");
}
// Get a node, modify its name
pugi::xml_node node = doc.child("node");
for (auto _ : state) {
std::string name = byRef(node);
benchmark::DoNotOptimize(name);
}
}
BENCHMARK(BM_ByVal);
BENCHMARK(BM_ByRef);