mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-14 04:43:38 +08:00
e7b01ce03d
Fix the ARI warning about the use of unsigned long long. We can't use ULONGEST as this is defined unsigned long on 64-bit systems. This will result in a compile error when storing a pointer to an unsigned long long structure field (declared in perf_event.h as __u64) in a ULONGEST * variable. Use size_t to hold the buffer size inside GDB and __u64 when interfacing the Linux kernel. gdb/ * nat/linux-btrace.c (perf_event_read): Change the type of DATA_HEAD. (perf_event_read_all): Change the type of SIZE and DATA_HEAD. (perf_event_read_bts): Change the type of SIZE and READ. (linux_enable_bts): Change the type of SIZE, PAGES, DATA_SIZE, and DATA_OFFSET. Move DATA_SIZE declaration. Restrict the buffer size to UINT_MAX. Check for overflows when using DATA_HEAD from the perf mmap page. (linux_enable_pt): Change the type of PAGES and SIZE. Restrict the buffer size to UINT_MAX. (linux_read_bts): Change the type of BUFFER_SIZE, SIZE, DATA_HEAD, and DATA_TAIL. * nat/linux-btrace.h (struct perf_event_buffer)<size, data_head> <last_head>: Change type. * common/btrace-common.h (struct btrace_dat_pt) <size>: Change type. * common/btrace-common.c (btrace_data_append): Change the type of SIZE. * btrace.c (parse_xml_raw): Change the type of SIZE. Change oddness check.
236 lines
6.0 KiB
C
236 lines
6.0 KiB
C
/* Branch trace support for GDB, the GNU debugger.
|
|
|
|
Copyright (C) 2013-2015 Free Software Foundation, Inc.
|
|
|
|
Contributed by Intel Corp. <markus.t.metzger@intel.com>.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef BTRACE_COMMON_H
|
|
#define BTRACE_COMMON_H
|
|
|
|
/* Branch tracing (btrace) is a per-thread control-flow execution trace of the
|
|
inferior. For presentation purposes, the branch trace is represented as a
|
|
list of sequential control-flow blocks, one such list per thread. */
|
|
|
|
#include "vec.h"
|
|
|
|
/* A branch trace block.
|
|
|
|
This represents a block of sequential control-flow. Adjacent blocks will be
|
|
connected via calls, returns, or jumps. The latter can be direct or
|
|
indirect, conditional or unconditional. Branches can further be
|
|
asynchronous, e.g. interrupts. */
|
|
struct btrace_block
|
|
{
|
|
/* The address of the first byte of the first instruction in the block.
|
|
The address may be zero if we do not know the beginning of this block,
|
|
such as for the first block in a delta trace. */
|
|
CORE_ADDR begin;
|
|
|
|
/* The address of the first byte of the last instruction in the block. */
|
|
CORE_ADDR end;
|
|
};
|
|
|
|
/* Define functions operating on a vector of branch trace blocks. */
|
|
typedef struct btrace_block btrace_block_s;
|
|
DEF_VEC_O (btrace_block_s);
|
|
|
|
/* Enumeration of btrace formats. */
|
|
|
|
enum btrace_format
|
|
{
|
|
/* No branch trace format. */
|
|
BTRACE_FORMAT_NONE,
|
|
|
|
/* Branch trace is in Branch Trace Store (BTS) format.
|
|
Actually, the format is a sequence of blocks derived from BTS. */
|
|
BTRACE_FORMAT_BTS,
|
|
|
|
/* Branch trace is in Intel(R) Processor Trace format. */
|
|
BTRACE_FORMAT_PT
|
|
};
|
|
|
|
/* An enumeration of cpu vendors. */
|
|
|
|
enum btrace_cpu_vendor
|
|
{
|
|
/* We do not know this vendor. */
|
|
CV_UNKNOWN,
|
|
|
|
/* Intel. */
|
|
CV_INTEL
|
|
};
|
|
|
|
/* A cpu identifier. */
|
|
|
|
struct btrace_cpu
|
|
{
|
|
/* The processor vendor. */
|
|
enum btrace_cpu_vendor vendor;
|
|
|
|
/* The cpu family. */
|
|
unsigned short family;
|
|
|
|
/* The cpu model. */
|
|
unsigned char model;
|
|
|
|
/* The cpu stepping. */
|
|
unsigned char stepping;
|
|
};
|
|
|
|
/* A BTS configuration. */
|
|
|
|
struct btrace_config_bts
|
|
{
|
|
/* The size of the branch trace buffer in bytes.
|
|
|
|
This is unsigned int and not size_t since it is registered as
|
|
control variable for "set record btrace bts buffer-size". */
|
|
unsigned int size;
|
|
};
|
|
|
|
/* An Intel(R) Processor Trace configuration. */
|
|
|
|
struct btrace_config_pt
|
|
{
|
|
/* The size of the branch trace buffer in bytes.
|
|
|
|
This is unsigned int and not size_t since it is registered as
|
|
control variable for "set record btrace pt buffer-size". */
|
|
unsigned int size;
|
|
};
|
|
|
|
/* A branch tracing configuration.
|
|
|
|
This describes the requested configuration as well as the actually
|
|
obtained configuration.
|
|
We describe the configuration for all different formats so we can
|
|
easily switch between formats. */
|
|
|
|
struct btrace_config
|
|
{
|
|
/* The branch tracing format. */
|
|
enum btrace_format format;
|
|
|
|
/* The BTS format configuration. */
|
|
struct btrace_config_bts bts;
|
|
|
|
/* The Intel(R) Processor Trace format configuration. */
|
|
struct btrace_config_pt pt;
|
|
};
|
|
|
|
/* Branch trace in BTS format. */
|
|
struct btrace_data_bts
|
|
{
|
|
/* Branch trace is represented as a vector of branch trace blocks starting
|
|
with the most recent block. */
|
|
VEC (btrace_block_s) *blocks;
|
|
};
|
|
|
|
/* Configuration information to go with the trace data. */
|
|
struct btrace_data_pt_config
|
|
{
|
|
/* The processor on which the trace has been collected. */
|
|
struct btrace_cpu cpu;
|
|
};
|
|
|
|
/* Branch trace in Intel(R) Processor Trace format. */
|
|
struct btrace_data_pt
|
|
{
|
|
/* Some configuration information to go with the data. */
|
|
struct btrace_data_pt_config config;
|
|
|
|
/* The trace data. */
|
|
gdb_byte *data;
|
|
|
|
/* The size of DATA in bytes. */
|
|
size_t size;
|
|
};
|
|
|
|
/* The branch trace data. */
|
|
struct btrace_data
|
|
{
|
|
enum btrace_format format;
|
|
|
|
union
|
|
{
|
|
/* Format == BTRACE_FORMAT_BTS. */
|
|
struct btrace_data_bts bts;
|
|
|
|
/* Format == BTRACE_FORMAT_PT. */
|
|
struct btrace_data_pt pt;
|
|
} variant;
|
|
};
|
|
|
|
/* Target specific branch trace information. */
|
|
struct btrace_target_info;
|
|
|
|
/* Enumeration of btrace read types. */
|
|
|
|
enum btrace_read_type
|
|
{
|
|
/* Send all available trace. */
|
|
BTRACE_READ_ALL,
|
|
|
|
/* Send all available trace, if it changed. */
|
|
BTRACE_READ_NEW,
|
|
|
|
/* Send the trace since the last request. This will fail if the trace
|
|
buffer overflowed. */
|
|
BTRACE_READ_DELTA
|
|
};
|
|
|
|
/* Enumeration of btrace errors. */
|
|
|
|
enum btrace_error
|
|
{
|
|
/* No error. Everything is OK. */
|
|
BTRACE_ERR_NONE,
|
|
|
|
/* An unknown error. */
|
|
BTRACE_ERR_UNKNOWN,
|
|
|
|
/* Branch tracing is not supported on this system. */
|
|
BTRACE_ERR_NOT_SUPPORTED,
|
|
|
|
/* The branch trace buffer overflowed; no delta read possible. */
|
|
BTRACE_ERR_OVERFLOW
|
|
};
|
|
|
|
/* Return a string representation of FORMAT. */
|
|
extern const char *btrace_format_string (enum btrace_format format);
|
|
|
|
/* Initialize DATA. */
|
|
extern void btrace_data_init (struct btrace_data *data);
|
|
|
|
/* Cleanup DATA. */
|
|
extern void btrace_data_fini (struct btrace_data *data);
|
|
|
|
/* Clear DATA. */
|
|
extern void btrace_data_clear (struct btrace_data *data);
|
|
|
|
/* Return non-zero if DATA is empty; zero otherwise. */
|
|
extern int btrace_data_empty (struct btrace_data *data);
|
|
|
|
/* Append the branch trace data from SRC to the end of DST.
|
|
Both SRC and DST must use the same format.
|
|
Returns zero on success; a negative number otherwise. */
|
|
extern int btrace_data_append (struct btrace_data *dst,
|
|
const struct btrace_data *src);
|
|
|
|
#endif /* BTRACE_COMMON_H */
|