mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-21 04:42:53 +08:00
de6242d307
Remove the to_supports_btrace target method and instead rely on detecting errors when trying to enable recording. This will also provide a suitable error message explaining why recording is not possible. For remote debugging, gdbserver will now always advertise branch tracing related packets. When talking to an older GDB, this will cause GDB to try to enable branch tracing and gdbserver to report a suitable error message every time. An older gdbserver will not advertise branch tracing related packets if the one-time check failed, so a newer GDB with this patch will fail to enable branch tracing at remote_enable_btrace() rather than at btrace_enable(). The error message is the same in both cases so there should be no user-visible change. gdb/ * btrace.c (btrace_enable): Remove target_supports_btrace call. * nat/linux-btrace.c (perf_event_pt_event_type): Move. (kernel_supports_bts, kernel_supports_pt, linux_supports_bts) (linux_supports_pt, linux_supports_btrace): Remove. (linux_enable_bts): Call cpu_supports_bts. * nat/linux-btrace.h (linux_supports_btrace): Remove. * remote.c (remote_supports_btrace): Remove. (init_remote_ops): Remove remote_supports_btrace. * target-delegates.c: Regenerated. * target.c (target_supports_btrace): Remove. * target.h (target_ops) <to_supports_btrace>: Remove (target_supports_btrace): Remove. * x86-linux-nat.c (x86_linux_create_target): Remove linux_supports_btrace. gdbserver/ * linux-low.c (linux_target_ops): Remove linux_supports_btrace. * nto-low.c (nto_target_ops): Remove NULL for supports_btrace. * spu-low.c (spu_target_ops): Likewise. * win32-low.c (win32_target_ops): Likewise. * server.c (supported_btrace_packets): Report packets unconditionally. * target.h (target_ops) <supports_btrace>: Remove. (target_supports_btrace): Remove.
123 lines
3.3 KiB
C
123 lines
3.3 KiB
C
/* Linux-dependent part of branch trace support for GDB, and GDBserver.
|
|
|
|
Copyright (C) 2013-2018 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 LINUX_BTRACE_H
|
|
#define LINUX_BTRACE_H
|
|
|
|
#include "btrace-common.h"
|
|
#include "vec.h"
|
|
#if HAVE_LINUX_PERF_EVENT_H
|
|
# include <linux/perf_event.h>
|
|
#endif
|
|
|
|
struct target_ops;
|
|
|
|
#if HAVE_LINUX_PERF_EVENT_H
|
|
/* A Linux perf event buffer. */
|
|
struct perf_event_buffer
|
|
{
|
|
/* The mapped memory. */
|
|
const uint8_t *mem;
|
|
|
|
/* The size of the mapped memory in bytes. */
|
|
size_t size;
|
|
|
|
/* A pointer to the data_head field for this buffer. */
|
|
volatile __u64 *data_head;
|
|
|
|
/* The data_head value from the last read. */
|
|
__u64 last_head;
|
|
};
|
|
|
|
/* Branch trace target information for BTS tracing. */
|
|
struct btrace_tinfo_bts
|
|
{
|
|
/* The Linux perf_event configuration for collecting the branch trace. */
|
|
struct perf_event_attr attr;
|
|
|
|
/* The perf event file. */
|
|
int file;
|
|
|
|
/* The perf event configuration page. */
|
|
volatile struct perf_event_mmap_page *header;
|
|
|
|
/* The BTS perf event buffer. */
|
|
struct perf_event_buffer bts;
|
|
};
|
|
|
|
/* Branch trace target information for Intel Processor Trace
|
|
tracing. */
|
|
struct btrace_tinfo_pt
|
|
{
|
|
/* The Linux perf_event configuration for collecting the branch trace. */
|
|
struct perf_event_attr attr;
|
|
|
|
/* The perf event file. */
|
|
int file;
|
|
|
|
/* The perf event configuration page. */
|
|
volatile struct perf_event_mmap_page *header;
|
|
|
|
/* The trace perf event buffer. */
|
|
struct perf_event_buffer pt;
|
|
};
|
|
#endif /* HAVE_LINUX_PERF_EVENT_H */
|
|
|
|
/* Branch trace target information per thread. */
|
|
struct btrace_target_info
|
|
{
|
|
/* The ptid of this thread. */
|
|
ptid_t ptid;
|
|
|
|
/* The obtained branch trace configuration. */
|
|
struct btrace_config conf;
|
|
|
|
#if HAVE_LINUX_PERF_EVENT_H
|
|
/* The branch tracing format specific information. */
|
|
union
|
|
{
|
|
/* CONF.FORMAT == BTRACE_FORMAT_BTS. */
|
|
struct btrace_tinfo_bts bts;
|
|
|
|
/* CONF.FORMAT == BTRACE_FORMAT_PT. */
|
|
struct btrace_tinfo_pt pt;
|
|
} variant;
|
|
#endif /* HAVE_LINUX_PERF_EVENT_H */
|
|
};
|
|
|
|
/* See to_enable_btrace in target.h. */
|
|
extern struct btrace_target_info *
|
|
linux_enable_btrace (ptid_t ptid, const struct btrace_config *conf);
|
|
|
|
/* See to_disable_btrace in target.h. */
|
|
extern enum btrace_error linux_disable_btrace (struct btrace_target_info *ti);
|
|
|
|
/* See to_read_btrace in target.h. */
|
|
extern enum btrace_error linux_read_btrace (struct btrace_data *btrace,
|
|
struct btrace_target_info *btinfo,
|
|
enum btrace_read_type type);
|
|
|
|
/* See to_btrace_conf in target.h. */
|
|
extern const struct btrace_config *
|
|
linux_btrace_conf (const struct btrace_target_info *);
|
|
|
|
#endif /* LINUX_BTRACE_H */
|