veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
trace.hpp
1
// Copyright (c) 2019-2022 Xenios SEZC
2
// https://www.veriblock.org
3
// Distributed under the MIT software license, see the accompanying
4
// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6
#ifndef VERIBLOCK_POP_CPP_TRACE_HPP
7
#define VERIBLOCK_POP_CPP_TRACE_HPP
8
9
#ifdef TRACY_ENABLE
10
#ifdef WIN32
11
#pragma warning(push, 0)
12
#endif
13
#include "third_party/Tracy.hpp"
14
#ifdef WIN32
15
#pragma warning(pop)
16
#endif
17
#define VBK_TRACE_ZONE_SCOPED ZoneScoped
18
// suffix S = also collects stack information
19
#define VBK_TRACE_ZONE_SCOPED_S(x) ZoneScopedS(x)
20
#define VBK_TRACE_ZONE_SCOPED_N(name) ZoneScopedN(name)
21
#define VBK_TRACE_FRAME_START(name) FrameMarkStart(name)
22
#define VBK_TRACE_FRAME_END(name) FrameMarkEnd(name)
23
#define VBK_TRACE_LOCKABLE(type, var) TracyLockable(type, var)
24
#define VBK_TRACE_LOCKABLE_BASE(type) LockableBase(type)
25
#else
26
#define VBK_TRACE_ZONE_SCOPED
27
#define VBK_TRACE_ZONE_SCOPED_S(x)
28
#define VBK_TRACE_ZONE_SCOPED_N(name)
29
#define VBK_TRACE_FRAME_START(name)
30
#define VBK_TRACE_FRAME_END(name)
31
#define VBK_TRACE_LOCKABLE(type, var) type var
32
#define VBK_TRACE_LOCKABLE_BASE(type) type
33
#endif
34
35
#endif
// VERIBLOCK_POP_CPP_TRACE_HPP