PopVision trace instrumentation library (PVTI)
PVTI API.
-
namespace pvti
TraceChannels
PVTI library predefined trace categories.
These predefined channels can be enabled or disabled at runtime. Tracepoints can be created using these channels, or custom channels can be added.
-
TraceChannel traceDrivers
-
TraceChannel tracePoplar
Typedefs
-
typedef struct pvti::TraceChannel TraceChannel
PVTI trace categories type definition.
Use for defining custom channels.
Functions
-
void enableTraceChannel(TraceChannel *channel)
Enable tracing channel for the session.
PVTI_OPTIONS
environment variable must be set, and trace enabled. See “Configuring trace options” for more information.- Parameters
channel – A pointer to the channel to be enabled.
-
void disableTraceChannel(TraceChannel *channel)
Disable tracing channel for the session.
- Parameters
channel – A pointer to the channel to be disabled.
-
bool checkTraceChannel(TraceChannel *channel)
Check if tracing channel is enabled.
- Parameters
channel – A pointer to the channel to check.
- Returns
True if the channel is enabled, false if it is disabled.
-
std::vector<TraceChannel*> listTraceChannel(void)
Get a list of all traceChannels in the session.
- Returns
A vector of pointers to the traceChannels in the session.
-
std::string getCurrentTraceFilename(void)
Get the current trace session filename.
- Returns
The current trace session filename.
-
void closeTrace()
Close the current trace session.
No Tracepoint events should be invoked following this function call.
-
class Client
- #include <pvti.hpp>
PVTI Client class should be added to any singleton which contains PVTI clients like Tracepoint, Graph and Series.
This is to ensure that PVTI Session singleton is created early on and it does not go out of scope before any of its clients.
Public Functions
-
Client()
-
Client()
-
class Graph
-
class Series
-
struct TraceChannel
- #include <pvti.hpp>
PVTI trace categories type definition.
Use for defining custom channels.
Public Functions
-
TraceChannel(const char *name, bool enabled = true)
Construct a TraceChannel object, and add it to the current session.
- Parameters
name – The channel name.
enabled – Set this to true to enable the channel when it is declared. enableTraceChannel() and disableTraceChannel() can be used to enable or disable channels at runtime.
-
TraceChannel(const char *name, bool enabled = true)
-
class Tracepoint
- #include <pvti.hpp>
Class for managing tracing of events.
Public Functions
-
Tracepoint(TraceChannel *traceChannel, const std::string traceLabel)
Profile a function or a scope by creating a named stack object of Tracepoint type.
- Parameters
traceChannel – The channel to create the tracepoint for
traceLabel – A unique user-friendly string for this scope’s trace.
-
Tracepoint(TraceChannel *traceChannel, const char *traceLabel, const int32_t traceLabelLen = -1)
Profile a function or a scope by creating a named stack object of Tracepoint type.
- Parameters
traceChannel – The channel to create the tracepoint for.
traceLabel – A unique user-friendly string for this scope’s trace.
traceLabelLen – The number of characters to use from the
traceLabel
(-1 indicates all).
-
~Tracepoint()
Invoked on Tracepoint function exit.
-
Tracepoint(const Tracepoint&) = delete
-
Tracepoint &operator=(const Tracepoint&) = delete
Public Static Functions
-
static void begin(TraceChannel *traceChannel, const std::string traceLabel)
Start profiling a region using this function.
Should be complemented with an end() to profile between the two.
- Parameters
traceChannel – The channel to create tracepoints for.
traceLabel – A unique user-friendly string for this region’s trace.
-
static void begin(TraceChannel *traceChannel, const char *traceLabel, const int32_t traceLabelLen = -1)
Start profiling a region using this function.
Should be complemented with with an end() to profile between the two.
- Parameters
traceChannel – The channel to create tracepoints for.
traceLabel – A unique user-friendly string for this region’s trace.
traceLabelLen – The number of characters to use from the
traceLabel
(-1 indicates all).
-
static void end(TraceChannel *traceChannel, const std::string traceLabel)
End profiling a region using this function.
Should be the complement to a begin() to profile between the two.
- Parameters
traceChannel – The channel to create tracepoints for.
traceLabel – A unique user-friendly string for this region’s trace.
-
static void end(TraceChannel *traceChannel, const char *traceLabel, const int32_t traceLabelLen = -1)
End profiling a region using this function.
Should be the complement to a begin() to profile between the two.
- Parameters
traceChannel – The channel to create tracepoints for.
traceLabel – A unique user-friendly string for this region’s trace.
traceLabelLen – The number of characters to use from the
traceLabel
(-1 indicates all).
-
static void event(TraceChannel *traceChannel, const std::string traceLabel)
Mark an occurrence to be instrumented.
Can be used to compute duration between two events of the same or different type.
- Parameters
traceChannel – The channel to create tracepoints for.
traceLabel – A unique user-friendly string for this event.
-
static void event(TraceChannel *traceChannel, const char *traceLabel, const int32_t len = -1)
Mark an occurrence to be instrumented.
Can be used to compute duration between two events of same or different type.
- Parameters
traceChannel – The channel to create tracepoints for.
traceLabel – A unique user-friendly string for this event.
traceLabelLen – The number of characters to use from the
traceLabel
(-1 indicates all).
-
Tracepoint(TraceChannel *traceChannel, const std::string traceLabel)
-
TraceChannel traceDrivers