Junxiao Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
Davide Pesavento | 21b7f1b | 2023-04-28 23:21:02 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2023 Regents of the University of California. |
Junxiao Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 4 | * |
| 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 Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 22 | #define BOOST_TEST_MODULE ndn-cxx Encoding Benchmark |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 23 | #include "tests/boost-test.hpp" |
Junxiao Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 24 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 25 | #include "ndn-cxx/encoding/tlv.hpp" |
Davide Pesavento | 394977c | 2020-04-25 21:40:31 -0400 | [diff] [blame] | 26 | #include "tests/benchmarks/timed-execute.hpp" |
Davide Pesavento | cdcde90 | 2017-08-23 15:40:22 -0400 | [diff] [blame] | 27 | |
Junxiao Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 28 | #include <boost/mpl/vector.hpp> |
| 29 | #include <boost/mpl/vector_c.hpp> |
| 30 | |
Davide Pesavento | cdcde90 | 2017-08-23 15:40:22 -0400 | [diff] [blame] | 31 | #include <iostream> |
| 32 | |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 33 | namespace ndn::tests { |
Junxiao Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 34 | |
| 35 | template<size_t WIRE_SIZE> |
| 36 | struct ReadVarNumberTest; |
| 37 | |
| 38 | template<> |
| 39 | struct ReadVarNumberTest<1> |
| 40 | { |
Davide Pesavento | 21b7f1b | 2023-04-28 23:21:02 -0400 | [diff] [blame] | 41 | static constexpr uint8_t WIRE[] = {0xfc}; |
| 42 | static constexpr uint64_t VALUE = 252; |
Junxiao Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 43 | }; |
Junxiao Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 44 | |
| 45 | template<> |
| 46 | struct ReadVarNumberTest<3> |
| 47 | { |
Davide Pesavento | 21b7f1b | 2023-04-28 23:21:02 -0400 | [diff] [blame] | 48 | static constexpr uint8_t WIRE[] = {0xfd, 0x00, 0xfd}; |
| 49 | static constexpr uint64_t VALUE = 253; |
Junxiao Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 50 | }; |
Junxiao Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 51 | |
| 52 | template<> |
| 53 | struct ReadVarNumberTest<5> |
| 54 | { |
Davide Pesavento | 21b7f1b | 2023-04-28 23:21:02 -0400 | [diff] [blame] | 55 | static constexpr uint8_t WIRE[] = {0xfe, 0x00, 0x01, 0x00, 0x00}; |
| 56 | static constexpr uint64_t VALUE = 65536; |
Junxiao Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 57 | }; |
Junxiao Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 58 | |
| 59 | template<> |
| 60 | struct ReadVarNumberTest<9> |
| 61 | { |
Davide Pesavento | 21b7f1b | 2023-04-28 23:21:02 -0400 | [diff] [blame] | 62 | static constexpr uint8_t WIRE[] = {0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00}; |
| 63 | static constexpr uint64_t VALUE = 4294967296; |
Junxiao Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 64 | }; |
Junxiao Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 65 | |
| 66 | template<size_t WIRE_SIZE, size_t ALIGNMENT_OFFSET> |
| 67 | struct ReadVarNumberAlignTest : public ReadVarNumberTest<WIRE_SIZE> |
| 68 | { |
| 69 | using AlignmentOffset = std::integral_constant<size_t, ALIGNMENT_OFFSET>; |
| 70 | |
| 71 | static_assert(sizeof(ReadVarNumberTest<WIRE_SIZE>::WIRE) == WIRE_SIZE, ""); |
| 72 | }; |
| 73 | |
| 74 | using ReadVarNumberTests = boost::mpl::vector< |
| 75 | ReadVarNumberAlignTest<1, 0>, |
| 76 | ReadVarNumberAlignTest<3, 0>, |
| 77 | ReadVarNumberAlignTest<3, 1>, |
| 78 | ReadVarNumberAlignTest<5, 0>, |
| 79 | ReadVarNumberAlignTest<5, 1>, |
| 80 | ReadVarNumberAlignTest<5, 2>, |
| 81 | ReadVarNumberAlignTest<5, 3>, |
| 82 | ReadVarNumberAlignTest<9, 0>, |
| 83 | ReadVarNumberAlignTest<9, 1>, |
| 84 | ReadVarNumberAlignTest<9, 2>, |
| 85 | ReadVarNumberAlignTest<9, 3>, |
| 86 | ReadVarNumberAlignTest<9, 4>, |
| 87 | ReadVarNumberAlignTest<9, 5>, |
| 88 | ReadVarNumberAlignTest<9, 6>, |
| 89 | ReadVarNumberAlignTest<9, 7> |
| 90 | >; |
| 91 | |
| 92 | // Benchmark of ndn::tlv::readVarNumber with different number lengths and alignments. |
Junxiao Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 93 | // For accurate results, it is required to compile ndn-cxx in release mode. |
| 94 | // It is recommended to run the benchmark multiple times and take the average. |
| 95 | BOOST_AUTO_TEST_CASE_TEMPLATE(ReadVarNumber, Test, ReadVarNumberTests) |
| 96 | { |
Davide Pesavento | 21b7f1b | 2023-04-28 23:21:02 -0400 | [diff] [blame] | 97 | constexpr int N_ITERATIONS = 100000000; |
Junxiao Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 98 | |
| 99 | alignas(8) uint8_t buffer[16]; |
| 100 | static_assert(Test::AlignmentOffset::value + sizeof(Test::WIRE) <= sizeof(buffer), ""); |
| 101 | uint8_t* const begin = buffer + Test::AlignmentOffset::value; |
| 102 | std::memcpy(begin, Test::WIRE, sizeof(Test::WIRE)); |
| 103 | const uint8_t* const end = begin + sizeof(Test::WIRE); |
| 104 | |
| 105 | int nOks = 0; |
| 106 | int nCorrects = 0; |
| 107 | auto d = timedExecute([&] { |
| 108 | uint64_t number = 0; |
| 109 | for (int i = 0; i < N_ITERATIONS; ++i) { |
| 110 | const uint8_t* begin2 = begin; // make a copy because readVarNumber increments the pointer |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 111 | nOks += tlv::readVarNumber(begin2, end, number); |
Junxiao Shi | 770f904 | 2017-07-13 13:30:53 +0000 | [diff] [blame] | 112 | nCorrects += number == Test::VALUE; |
| 113 | // use the number and the return value, so compiler won't optimize out their computation |
| 114 | } |
| 115 | }); |
| 116 | BOOST_CHECK_EQUAL(nOks, N_ITERATIONS); |
| 117 | BOOST_CHECK_EQUAL(nCorrects, N_ITERATIONS); |
| 118 | std::cout << "size=" << sizeof(Test::WIRE) |
| 119 | << " offset=" << Test::AlignmentOffset::value |
| 120 | << " " << d << std::endl; |
| 121 | } |
| 122 | |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 123 | } // namespace ndn::tests |