From 4fc2f55f761d71aae1f145d5aa94ba929cc39676 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 11:34:30 +0200 Subject: Adding upstream version 1.7.3. Signed-off-by: Daniel Baumann --- stat_t.hh | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 stat_t.hh (limited to 'stat_t.hh') diff --git a/stat_t.hh b/stat_t.hh new file mode 100644 index 0000000..d318c98 --- /dev/null +++ b/stat_t.hh @@ -0,0 +1,79 @@ +/* + * This file is part of PowerDNS or dnsdist. + * Copyright -- PowerDNS.COM B.V. and its contributors + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of version 2 of the GNU General Public License as + * published by the Free Software Foundation. + * + * In addition, for the avoidance of any doubt, permission is granted to + * link this program with OpenSSL and to (re)distribute the binaries + * produced as the result of such linking. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ +#pragma once + +#include + +#define CPU_LEVEL1_DCACHE_LINESIZE 64 // Until we know better via configure/getconf + +namespace pdns { + template + class stat_t_trait { + public: + typedef T base_t; + typedef std::atomic atomic_t; + + stat_t_trait() : stat_t_trait(base_t(0)) { + } + stat_t_trait(const base_t x) { + new(&counter) atomic_t(x); + } + ~stat_t_trait() { + reinterpret_cast(&counter)->~atomic_t(); + } + stat_t_trait(const stat_t_trait&) = delete; + base_t operator++(int) { + return (*reinterpret_cast(&counter))++; + } + base_t operator++() { + return ++(*reinterpret_cast(&counter)); + } + base_t operator--(int) { + return (*reinterpret_cast(&counter))--; + } + base_t operator--() { + return --(*reinterpret_cast(&counter)); + } + base_t operator+=(const stat_t_trait& v) { + return *reinterpret_cast(&counter) += *reinterpret_cast(&v.counter); + } + base_t operator-=(const stat_t_trait& v) { + return *reinterpret_cast(&counter) -= *reinterpret_cast(&v.counter); + } + base_t load() const { + return reinterpret_cast(&counter)->load(); + } + void store(base_t v) { + reinterpret_cast(&counter)->store(v); + } + operator base_t() const { + return reinterpret_cast(&counter)->load(); + } + + private: + typename std::aligned_storage::type counter; + }; + + typedef stat_t_trait stat_t; + typedef stat_t_trait stat32_t; + typedef stat_t_trait stat16_t; +} -- cgit v1.2.3