blob: ee1983ce5617a9c8b09f66d8ca7d83ed3a155a57 [file] [log] [blame]
Stefan Hajnoczi26f72272010-05-22 19:24:51 +01001/*
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
Lluísedb47ec2011-08-31 20:30:57 +020011#ifndef TRACE_SIMPLE_H
12#define TRACE_SIMPLE_H
Stefan Hajnoczi26f72272010-05-22 19:24:51 +010013
Markus Armbrusterba4912c2019-04-17 21:17:50 +020014void st_print_trace_file_status(void);
Markus Armbrusterdb25d562020-05-27 08:56:13 +020015bool st_set_trace_file_enabled(bool enable);
Paolo Bonzini41fc57e2016-01-07 16:55:24 +030016void st_set_trace_file(const char *file);
17bool st_init(void);
Gerd Hoffmann263b6e92021-06-01 15:24:06 +020018void st_init_group(size_t group);
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +010019void st_flush_trace_buffer(void);
Stefan Hajnoczi26f72272010-05-22 19:24:51 +010020
Harsh Prateek Bora62bab732012-07-18 15:15:59 +053021typedef struct {
22 unsigned int tbuf_idx;
Harsh Prateek Bora62bab732012-07-18 15:15:59 +053023 unsigned int rec_off;
24} TraceBufferRecord;
25
26/* Note for hackers: Make sure MAX_TRACE_LEN < sizeof(uint32_t) */
27#define MAX_TRACE_STRLEN 512
28/**
29 * Initialize a trace record and claim space for it in the buffer
30 *
31 * @arglen number of bytes required for arguments
32 */
Daniel P. Berrangeef4c9fc2016-10-04 14:35:49 +010033int trace_record_start(TraceBufferRecord *rec, uint32_t id, size_t arglen);
Harsh Prateek Bora62bab732012-07-18 15:15:59 +053034
35/**
36 * Append a 64-bit argument to a trace record
37 */
38void trace_record_write_u64(TraceBufferRecord *rec, uint64_t val);
39
40/**
41 * Append a string argument to a trace record
42 */
43void trace_record_write_str(TraceBufferRecord *rec, const char *s, uint32_t slen);
44
45/**
46 * Mark a trace record completed
47 *
48 * Don't append any more arguments to the trace record after calling this.
49 */
50void trace_record_finish(TraceBufferRecord *rec);
51
Lluísedb47ec2011-08-31 20:30:57 +020052#endif /* TRACE_SIMPLE_H */