Add benchmark points
[lttng-tools.git] / benchmark / benchmark.h
CommitLineData
b25a8868
DG
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; only version 2
7 * of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
18
19#ifndef _BENCHMARK_H
20#define _BENCHMARK_H
21
22#include <stdint.h>
23#include <urcu/arch.h>
24
25#include "cpu.h"
26#include "measures.h"
27
28#define RESULTS_FILE_NAME "/tmp/lttng-bench-results.txt"
29
3c6bae61 30extern FILE *fp;
b25a8868 31
3c6bae61
DG
32void bench_init(void);
33void bench_close(void);
902c9922
DG
34
35void bench_print_create_session(void);
36void bench_print_enable_ust_event(void);
37void bench_print_enable_ust_channel(void);
38void bench_print_start_ust(void);
39
3c6bae61 40void bench_print_boot_process(void);
62d53818 41void bench_print_ust_register(void);
01e65450 42void bench_print_ust_unregister(void);
62d53818 43void bench_print_ust_notification(void);
902c9922 44
3c6bae61
DG
45double bench_get_create_session(void);
46double bench_get_destroy_session(void);
b25a8868 47
3c6bae61
DG
48#define record_cycles(name) \
49 do { \
50 time_##name = get_cycles(); \
51 } while (0)
52
53#define tracepoint(name, args...) \
54 do { \
55 record_cycles(name); \
b25a8868
DG
56 } while (0)
57
58#endif /* _BENCHMARK_H */
This page took 0.02621 seconds and 4 git commands to generate.