1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * intel_pt_insn_decoder.h: Intel Processor Trace support
4 * Copyright (c) 2013-2014, Intel Corporation.
7 #ifndef INCLUDE__INTEL_PT_INSN_DECODER_H__
8 #define INCLUDE__INTEL_PT_INSN_DECODER_H__
13 #define INTEL_PT_INSN_DESC_MAX 32
14 #define INTEL_PT_INSN_BUF_SZ 16
16 enum intel_pt_insn_op
{
32 enum intel_pt_insn_branch
{
33 INTEL_PT_BR_NO_BRANCH
,
35 INTEL_PT_BR_CONDITIONAL
,
36 INTEL_PT_BR_UNCONDITIONAL
,
39 struct intel_pt_insn
{
40 enum intel_pt_insn_op op
;
41 enum intel_pt_insn_branch branch
;
42 bool emulated_ptwrite
;
45 unsigned char buf
[INTEL_PT_INSN_BUF_SZ
];
48 int intel_pt_get_insn(const unsigned char *buf
, size_t len
, int x86_64
,
49 struct intel_pt_insn
*intel_pt_insn
);
51 const char *intel_pt_insn_name(enum intel_pt_insn_op op
);
53 int intel_pt_insn_desc(const struct intel_pt_insn
*intel_pt_insn
, char *buf
,
56 int intel_pt_insn_type(enum intel_pt_insn_op op
);