Always evaluate BT_ASSERT(); add BT_ASSERT_DBG() for debug mode only
[babeltrace.git] / src / lib / trace-ir / clock-snapshot.h
CommitLineData
ecbb78c0
PP
1#ifndef BABELTRACE_TRACE_IR_CLOCK_SNAPSHOT_INTERNAL_H
2#define BABELTRACE_TRACE_IR_CLOCK_SNAPSHOT_INTERNAL_H
a62f9ba0
PP
3
4/*
f2b0325d 5 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
a62f9ba0
PP
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
85e7137b 26#include "common/macros.h"
57952005 27#include "lib/object.h"
a62f9ba0
PP
28#include <stdbool.h>
29#include <stdint.h>
30
57952005
MJ
31#include "clock-class.h"
32#include "utils.h"
33
839d52a5 34struct bt_clock_class;
a62f9ba0 35
ecbb78c0 36struct bt_clock_snapshot {
a62f9ba0 37 struct bt_object base;
839d52a5 38 struct bt_clock_class *clock_class;
7b33a0e0
PP
39 uint64_t value_cycles;
40 bool ns_from_origin_overflows;
41 int64_t ns_from_origin;
a6918753 42 bool is_set;
a62f9ba0
PP
43};
44
a6918753 45static inline
ecbb78c0 46void bt_clock_snapshot_set(struct bt_clock_snapshot *clock_snapshot)
a6918753 47{
ec4a3354 48 BT_ASSERT_DBG(clock_snapshot);
ecbb78c0 49 clock_snapshot->is_set = true;
a6918753
PP
50}
51
52static inline
ecbb78c0 53void bt_clock_snapshot_reset(struct bt_clock_snapshot *clock_snapshot)
a6918753 54{
ec4a3354 55 BT_ASSERT_DBG(clock_snapshot);
ecbb78c0 56 clock_snapshot->is_set = false;
a6918753
PP
57}
58
a6918753 59static inline
ecbb78c0 60void set_ns_from_origin(struct bt_clock_snapshot *clock_snapshot)
a6918753 61{
35fa110e
PP
62 if (bt_util_ns_from_origin_clock_class(clock_snapshot->clock_class,
63 clock_snapshot->value_cycles,
ecbb78c0
PP
64 &clock_snapshot->ns_from_origin)) {
65 clock_snapshot->ns_from_origin_overflows = true;
8fc063a2 66 }
8fc063a2
PP
67}
68
69static inline
ecbb78c0 70void bt_clock_snapshot_set_raw_value(struct bt_clock_snapshot *clock_snapshot,
8fc063a2
PP
71 uint64_t cycles)
72{
ec4a3354 73 BT_ASSERT_DBG(clock_snapshot);
ecbb78c0
PP
74 clock_snapshot->value_cycles = cycles;
75 set_ns_from_origin(clock_snapshot);
76 bt_clock_snapshot_set(clock_snapshot);
8fc063a2
PP
77}
78
7b33a0e0 79BT_HIDDEN
ecbb78c0 80void bt_clock_snapshot_destroy(struct bt_clock_snapshot *clock_snapshot);
7b33a0e0
PP
81
82BT_HIDDEN
ecbb78c0 83struct bt_clock_snapshot *bt_clock_snapshot_new(struct bt_clock_class *clock_class);
a6918753
PP
84
85BT_HIDDEN
ecbb78c0 86struct bt_clock_snapshot *bt_clock_snapshot_create(
a6918753
PP
87 struct bt_clock_class *clock_class);
88
89BT_HIDDEN
ecbb78c0 90void bt_clock_snapshot_recycle(struct bt_clock_snapshot *clock_snapshot);
a6918753 91
ecbb78c0 92#endif /* BABELTRACE_TRACE_IR_CLOCK_SNAPSHOT_INTERNAL_H */
This page took 0.054315 seconds and 4 git commands to generate.