Stefan Hajnoczi | 26f7227 | 2010-05-22 19:24:51 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Simple trace backend |
| 3 | * |
| 4 | * Copyright IBM, Corp. 2010 |
| 5 | * |
| 6 | * This work is licensed under the terms of the GNU GPL, version 2. See |
| 7 | * the COPYING file in the top-level directory. |
| 8 | * |
| 9 | */ |
| 10 | |
| 11 | #ifndef SIMPLETRACE_H |
| 12 | #define SIMPLETRACE_H |
| 13 | |
| 14 | #include <stdint.h> |
Prerna Saxena | 22890ab | 2010-06-24 17:04:53 +0530 | [diff] [blame] | 15 | #include <stdbool.h> |
| 16 | #include <stdio.h> |
Stefan Hajnoczi | 26f7227 | 2010-05-22 19:24:51 +0100 | [diff] [blame] | 17 | |
Stefan Hajnoczi | 0b5538c | 2011-02-26 18:38:39 +0000 | [diff] [blame] | 18 | #ifdef CONFIG_SIMPLE_TRACE |
Stefan Hajnoczi | 26f7227 | 2010-05-22 19:24:51 +0100 | [diff] [blame] | 19 | typedef uint64_t TraceEventID; |
| 20 | |
Prerna Saxena | 22890ab | 2010-06-24 17:04:53 +0530 | [diff] [blame] | 21 | typedef struct { |
| 22 | const char *tp_name; |
| 23 | bool state; |
| 24 | } TraceEvent; |
| 25 | |
Stefan Hajnoczi | 26f7227 | 2010-05-22 19:24:51 +0100 | [diff] [blame] | 26 | void trace0(TraceEventID event); |
| 27 | void trace1(TraceEventID event, uint64_t x1); |
| 28 | void trace2(TraceEventID event, uint64_t x1, uint64_t x2); |
| 29 | void trace3(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3); |
| 30 | void trace4(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4); |
| 31 | void trace5(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4, uint64_t x5); |
| 32 | void trace6(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4, uint64_t x5, uint64_t x6); |
Stefan Weil | 0b2c508 | 2010-11-15 21:17:06 +0100 | [diff] [blame] | 33 | void st_print_trace(FILE *stream, fprintf_function stream_printf); |
| 34 | void st_print_trace_events(FILE *stream, fprintf_function stream_printf); |
Blue Swirl | f871d68 | 2010-10-13 19:14:29 +0000 | [diff] [blame] | 35 | bool st_change_trace_event_state(const char *tname, bool tstate); |
Stefan Weil | 0b2c508 | 2010-11-15 21:17:06 +0100 | [diff] [blame] | 36 | void st_print_trace_file_status(FILE *stream, fprintf_function stream_printf); |
Stefan Hajnoczi | c5ceb52 | 2010-07-13 09:26:33 +0100 | [diff] [blame] | 37 | void st_set_trace_file_enabled(bool enable); |
| 38 | bool st_set_trace_file(const char *file); |
| 39 | void st_flush_trace_buffer(void); |
Stefan Hajnoczi | 31d3c9b | 2011-03-13 20:14:30 +0000 | [diff] [blame] | 40 | bool st_init(const char *file); |
Stefan Hajnoczi | 0b5538c | 2011-02-26 18:38:39 +0000 | [diff] [blame] | 41 | #else |
Stefan Hajnoczi | 31d3c9b | 2011-03-13 20:14:30 +0000 | [diff] [blame] | 42 | static inline bool st_init(const char *file) |
Stefan Hajnoczi | 0b5538c | 2011-02-26 18:38:39 +0000 | [diff] [blame] | 43 | { |
Stefan Hajnoczi | 31d3c9b | 2011-03-13 20:14:30 +0000 | [diff] [blame] | 44 | return true; |
Stefan Hajnoczi | 0b5538c | 2011-02-26 18:38:39 +0000 | [diff] [blame] | 45 | } |
| 46 | #endif /* !CONFIG_SIMPLE_TRACE */ |
Stefan Hajnoczi | 26f7227 | 2010-05-22 19:24:51 +0100 | [diff] [blame] | 47 | |
| 48 | #endif /* SIMPLETRACE_H */ |