1 /* SPDX-License-Identifier: GPL-2.0 */
3 #define TRACE_SYSTEM emulation
5 #if !defined(_TRACE_EMULATION_H) || defined(TRACE_HEADER_MULTI_READ)
6 #define _TRACE_EMULATION_H
8 #include <linux/tracepoint.h>
10 TRACE_EVENT(instruction_emulation
,
12 TP_PROTO(const char *instr
, u64 addr
),
16 __string(instr
, instr
)
21 __assign_str(instr
, instr
);
25 TP_printk("instr=\"%s\" addr=0x%llx", __get_str(instr
), __entry
->addr
)
28 #endif /* _TRACE_EMULATION_H */
30 /* This part must be outside protection */
31 #undef TRACE_INCLUDE_PATH
32 #undef TRACE_INCLUDE_FILE
33 #define TRACE_INCLUDE_PATH .
35 #define TRACE_INCLUDE_FILE trace-events-emulation
36 #include <trace/define_trace.h>