blob: 4d7c96bc555187d7142446e49c1609f5c8e25b11 [file] [log] [blame]
Junxiao Shi770f9042017-07-13 13:30:53 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesavento21b7f1b2023-04-28 23:21:02 -04003 * Copyright (c) 2013-2023 Regents of the University of California.
Junxiao Shi770f9042017-07-13 13:30:53 +00004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
7 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20 */
21
Junxiao Shi770f9042017-07-13 13:30:53 +000022#define BOOST_TEST_MODULE ndn-cxx Encoding Benchmark
Davide Pesavento7e780642018-11-24 15:51:34 -050023#include "tests/boost-test.hpp"
Junxiao Shi770f9042017-07-13 13:30:53 +000024
Davide Pesavento7e780642018-11-24 15:51:34 -050025#include "ndn-cxx/encoding/tlv.hpp"
Davide Pesavento394977c2020-04-25 21:40:31 -040026#include "tests/benchmarks/timed-execute.hpp"
Davide Pesaventocdcde902017-08-23 15:40:22 -040027
Davide Pesavento49e1e872023-11-11 00:45:23 -050028#include <boost/mp11/list.hpp>
Junxiao Shi770f9042017-07-13 13:30:53 +000029
Davide Pesaventocdcde902017-08-23 15:40:22 -040030#include <iostream>
31
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040032namespace ndn::tests {
Junxiao Shi770f9042017-07-13 13:30:53 +000033
34template<size_t WIRE_SIZE>
35struct ReadVarNumberTest;
36
37template<>
38struct ReadVarNumberTest<1>
39{
Davide Pesavento21b7f1b2023-04-28 23:21:02 -040040 static constexpr uint8_t WIRE[] = {0xfc};
41 static constexpr uint64_t VALUE = 252;
Junxiao Shi770f9042017-07-13 13:30:53 +000042};
Junxiao Shi770f9042017-07-13 13:30:53 +000043
44template<>
45struct ReadVarNumberTest<3>
46{
Davide Pesavento21b7f1b2023-04-28 23:21:02 -040047 static constexpr uint8_t WIRE[] = {0xfd, 0x00, 0xfd};
48 static constexpr uint64_t VALUE = 253;
Junxiao Shi770f9042017-07-13 13:30:53 +000049};
Junxiao Shi770f9042017-07-13 13:30:53 +000050
51template<>
52struct ReadVarNumberTest<5>
53{
Davide Pesavento21b7f1b2023-04-28 23:21:02 -040054 static constexpr uint8_t WIRE[] = {0xfe, 0x00, 0x01, 0x00, 0x00};
55 static constexpr uint64_t VALUE = 65536;
Junxiao Shi770f9042017-07-13 13:30:53 +000056};
Junxiao Shi770f9042017-07-13 13:30:53 +000057
58template<>
59struct ReadVarNumberTest<9>
60{
Davide Pesavento21b7f1b2023-04-28 23:21:02 -040061 static constexpr uint8_t WIRE[] = {0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00};
62 static constexpr uint64_t VALUE = 4294967296;
Junxiao Shi770f9042017-07-13 13:30:53 +000063};
Junxiao Shi770f9042017-07-13 13:30:53 +000064
65template<size_t WIRE_SIZE, size_t ALIGNMENT_OFFSET>
66struct ReadVarNumberAlignTest : public ReadVarNumberTest<WIRE_SIZE>
67{
68 using AlignmentOffset = std::integral_constant<size_t, ALIGNMENT_OFFSET>;
69
Davide Pesaventofffdd622023-08-28 22:50:43 -040070 static_assert(sizeof(ReadVarNumberTest<WIRE_SIZE>::WIRE) == WIRE_SIZE);
Junxiao Shi770f9042017-07-13 13:30:53 +000071};
72
Davide Pesavento49e1e872023-11-11 00:45:23 -050073using ReadVarNumberTests = boost::mp11::mp_list<
Junxiao Shi770f9042017-07-13 13:30:53 +000074 ReadVarNumberAlignTest<1, 0>,
75 ReadVarNumberAlignTest<3, 0>,
76 ReadVarNumberAlignTest<3, 1>,
77 ReadVarNumberAlignTest<5, 0>,
78 ReadVarNumberAlignTest<5, 1>,
79 ReadVarNumberAlignTest<5, 2>,
80 ReadVarNumberAlignTest<5, 3>,
81 ReadVarNumberAlignTest<9, 0>,
82 ReadVarNumberAlignTest<9, 1>,
83 ReadVarNumberAlignTest<9, 2>,
84 ReadVarNumberAlignTest<9, 3>,
85 ReadVarNumberAlignTest<9, 4>,
86 ReadVarNumberAlignTest<9, 5>,
87 ReadVarNumberAlignTest<9, 6>,
88 ReadVarNumberAlignTest<9, 7>
89>;
90
91// Benchmark of ndn::tlv::readVarNumber with different number lengths and alignments.
Junxiao Shi770f9042017-07-13 13:30:53 +000092// For accurate results, it is required to compile ndn-cxx in release mode.
93// It is recommended to run the benchmark multiple times and take the average.
94BOOST_AUTO_TEST_CASE_TEMPLATE(ReadVarNumber, Test, ReadVarNumberTests)
95{
Davide Pesavento21b7f1b2023-04-28 23:21:02 -040096 constexpr int N_ITERATIONS = 100000000;
Junxiao Shi770f9042017-07-13 13:30:53 +000097
98 alignas(8) uint8_t buffer[16];
Davide Pesaventofffdd622023-08-28 22:50:43 -040099 static_assert(Test::AlignmentOffset::value + sizeof(Test::WIRE) <= sizeof(buffer));
Junxiao Shi770f9042017-07-13 13:30:53 +0000100 uint8_t* const begin = buffer + Test::AlignmentOffset::value;
101 std::memcpy(begin, Test::WIRE, sizeof(Test::WIRE));
102 const uint8_t* const end = begin + sizeof(Test::WIRE);
103
104 int nOks = 0;
105 int nCorrects = 0;
106 auto d = timedExecute([&] {
107 uint64_t number = 0;
108 for (int i = 0; i < N_ITERATIONS; ++i) {
109 const uint8_t* begin2 = begin; // make a copy because readVarNumber increments the pointer
Davide Pesavento47ce2ee2023-05-09 01:33:33 -0400110 nOks += tlv::readVarNumber(begin2, end, number);
Junxiao Shi770f9042017-07-13 13:30:53 +0000111 nCorrects += number == Test::VALUE;
112 // use the number and the return value, so compiler won't optimize out their computation
113 }
114 });
115 BOOST_CHECK_EQUAL(nOks, N_ITERATIONS);
116 BOOST_CHECK_EQUAL(nCorrects, N_ITERATIONS);
117 std::cout << "size=" << sizeof(Test::WIRE)
118 << " offset=" << Test::AlignmentOffset::value
119 << " " << d << std::endl;
120}
121
Davide Pesavento47ce2ee2023-05-09 01:33:33 -0400122} // namespace ndn::tests