tap-driver.sh: flush stdout after each test result
[babeltrace.git] / include / babeltrace2 / trace-ir / clock-snapshot-internal.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
71c5da58
MJ
26#include <babeltrace2/babeltrace-internal.h>
27#include <babeltrace2/object-internal.h>
28#include <babeltrace2/trace-ir/clock-class-internal.h>
29#include <babeltrace2/trace-ir/utils-internal.h>
a62f9ba0
PP
30#include <stdbool.h>
31#include <stdint.h>
32
839d52a5 33struct bt_clock_class;
a62f9ba0 34
ecbb78c0 35struct bt_clock_snapshot {
a62f9ba0 36 struct bt_object base;
839d52a5 37 struct bt_clock_class *clock_class;
7b33a0e0
PP
38 uint64_t value_cycles;
39 bool ns_from_origin_overflows;
40 int64_t ns_from_origin;
a6918753 41 bool is_set;
a62f9ba0
PP
42};
43
a6918753 44static inline
ecbb78c0 45void bt_clock_snapshot_set(struct bt_clock_snapshot *clock_snapshot)
a6918753 46{
ecbb78c0
PP
47 BT_ASSERT(clock_snapshot);
48 clock_snapshot->is_set = true;
a6918753
PP
49}
50
51static inline
ecbb78c0 52void bt_clock_snapshot_reset(struct bt_clock_snapshot *clock_snapshot)
a6918753 53{
ecbb78c0
PP
54 BT_ASSERT(clock_snapshot);
55 clock_snapshot->is_set = false;
a6918753
PP
56}
57
a6918753 58static inline
ecbb78c0 59void set_ns_from_origin(struct bt_clock_snapshot *clock_snapshot)
a6918753 60{
35fa110e
PP
61 if (bt_util_ns_from_origin_clock_class(clock_snapshot->clock_class,
62 clock_snapshot->value_cycles,
ecbb78c0
PP
63 &clock_snapshot->ns_from_origin)) {
64 clock_snapshot->ns_from_origin_overflows = true;
8fc063a2 65 }
8fc063a2
PP
66}
67
68static inline
ecbb78c0 69void bt_clock_snapshot_set_raw_value(struct bt_clock_snapshot *clock_snapshot,
8fc063a2
PP
70 uint64_t cycles)
71{
ecbb78c0
PP
72 BT_ASSERT(clock_snapshot);
73 clock_snapshot->value_cycles = cycles;
74 set_ns_from_origin(clock_snapshot);
75 bt_clock_snapshot_set(clock_snapshot);
8fc063a2
PP
76}
77
7b33a0e0 78BT_HIDDEN
ecbb78c0 79void bt_clock_snapshot_destroy(struct bt_clock_snapshot *clock_snapshot);
7b33a0e0
PP
80
81BT_HIDDEN
ecbb78c0 82struct bt_clock_snapshot *bt_clock_snapshot_new(struct bt_clock_class *clock_class);
a6918753
PP
83
84BT_HIDDEN
ecbb78c0 85struct bt_clock_snapshot *bt_clock_snapshot_create(
a6918753
PP
86 struct bt_clock_class *clock_class);
87
88BT_HIDDEN
ecbb78c0 89void bt_clock_snapshot_recycle(struct bt_clock_snapshot *clock_snapshot);
a6918753 90
ecbb78c0 91#endif /* BABELTRACE_TRACE_IR_CLOCK_SNAPSHOT_INTERNAL_H */
This page took 0.035233 seconds and 4 git commands to generate.