2014-01-15 14:27:09 +00:00
|
|
|
|
2014-01-27 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* ada-typeprint.c (print_range): Add missing empty line
|
|
|
|
|
after local declaration.
|
|
|
|
|
|
[Ada] Array bound incorrectly printed for array indexed by enum subrange
Consider the following declarations:
type Range_Type is (One, Two, Three);
type Array_Type is array (Range_Type range One .. Two) of Integer;
A : Array_Type := (1, 2);
Trying to print A can yield:
(gdb) print a
$1 = (one => 1, 2)
The bound of the first element should not have been printed, since
"one" is the first enumerate of type Range_Type. Similarly, with
the following declarations:
type Array2_Type is array (Range_Type range Two .. Three) of Integer;
A2 : Array2_Type := (2, 3);
GDB is failing to print the bound of the first element of "A2":
(gdb) print a2
$2 = (2, 3)
This is because the index type for both types Array_Type and Array2_Type
are subranges (by DWARF definition for arrays), of an anonymous subrange
type. When deciding whether to print the bound of the first element,
we handle subranges, but only up to one level. This patch enhanced
the code to handle any number of subrange levels.
gdb/ChangeLog:
* ada-valprint.c (print_optional_low_bound): Get index_type's
target type for as long as it is a TYPE_CODE_RANGE.
No testcase with this patch, but this will be tested via the testcase
of another patch, which uses the DWARF assembler to generate debugging
info for an array indexed by an enum.
2014-01-09 13:30:39 +00:00
|
|
|
|
2014-01-27 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* ada-valprint.c (print_optional_low_bound): Get index_type's
|
|
|
|
|
target type for as long as it is a TYPE_CODE_RANGE.
|
|
|
|
|
|
Remove assert in procfs.c::procfs_make_note_section (x86-solaris)
On x86-solaris, the gcore command sometimes triggers the following
internal error:
(gdb) gcore
/[...]/procfs.c:5523: internal-error: procfs_make_note_section: Assertion `thread_args.note_data != note_data' failed.
The problem is extremely elusive, for reasons that will become clearer
as I explain what is going on.
The program used to produce this issue was really simple:
| void break_me (void) { }
|
| int
| main (void)
| {
| break_me ();
| return 0;
| }
The procfs_make_note_section builds a buffer incrementally with
the contents of the core's notes section. The interesting bits are:
char *note_data = NULL;
[...]
note_data = (char *) elfcore_write_prpsinfo (obfd,
note_data,
note_size,
fname,
psargs);
This is the first call to bfd's elfcore which initializes note_data.
After that, we have a few more calls, which keep updating notes_data
and note_size, but our interest lies in the following part of
the function:
thread_args.note_data = note_data;
[...]
proc_iterate_over_threads (pi, procfs_corefile_thread_callback,
&thread_args);
/* There should be always at least one thread. */
gdb_assert (thread_args.note_data != note_data);
The comment implies that the assert is to verify that our loop
iterated over at least one thread. The check is relying on the
fact that the notes_data returned by the elfcore module changes
at each iteration, via (in procfs_corefile_thread_callback):
args->note_data = procfs_do_thread_registers (args->obfd, ptid,
args->note_data,
args->note_size,
args->stop_signal);
(which calls elfcore_write_lwpstatus).
But, while it happens most of the time, thanks to a call to realloc
in elfcore_write_note (the function that actually appends the data
at the end of the notes buffer),...
buf = (char *) realloc (buf, *bufsiz + newspace);
... this is by no means guarantied. In fact, under the right
circumstances, the buffer was grown twice without changing
addresses. Unfortunately, the circumstances are very sensitive,
thus making this bug very elusive.
This patch fixes the problem by simply removing the assert.
This means we're losing the assertion that there is at least one
thread, but I think that's OK. If we still want to keep the
assertion, we have the option of either checking the buffer
size, or else adding a boolean flag in the context structure
that we'd set to true as soon as we have a thread.
gdb/ChangeLog:
* procfs.c (procfs_make_note_section): Remove assertion and
associated comment.
2014-01-20 15:18:58 +00:00
|
|
|
|
2014-01-27 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* procfs.c (procfs_make_note_section): Remove assertion and
|
|
|
|
|
associated comment.
|
|
|
|
|
|
2014-01-10 06:11:59 +00:00
|
|
|
|
2014-01-24 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* remote.c (remote_read_bytes): Change type of len to ULONGEST.
|
|
|
|
|
* corelow.c (get_core_siginfo): Likewise.
|
|
|
|
|
|
Change len's type to ULONGEST: remote_write_bytes_aux
Hi,
This patch changes the type of 'len' from ssize_t to ULONGEST.
At the beginning Siddhesh Poyarekar proposed this patch
[PATCH] Memory reads and writes should have size_t length
https://sourceware.org/ml/gdb-patches/2012-05/msg01073.html
to change type of 'len' to size_t. However, after Jan's review, we
decide to change it to ssize_t, because callers of these functions
may pass signed type to them.
AFAICS, the target layer is a boundary. In one side, we pass size_t
or ssize_t to target related APIs, and in the other side, the
implementation side, we used LONGEST (ULONGEST in latest code) because
of to_xfer_partial.
Since remote_write_bytes_aux and remote_write_bytes belong to the
implementation of remote target, we should use ULONGEST for len, IMO.
Regression tested on x86_64-linux. Is it OK?
gdb:
2014-01-24 Yao Qi <yao@codesourcery.com>
* remote.c (remote_write_bytes_aux): Change type of 'len' to
ULONGEST. Don't check 'len' is negative.
(remote_write_bytes): Change type of 'len' to ULONGEST.
2014-01-10 05:59:26 +00:00
|
|
|
|
2014-01-24 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* remote.c (remote_write_bytes_aux): Change type of 'len' to
|
|
|
|
|
ULONGEST. Don't check 'len' is negative.
|
|
|
|
|
(remote_write_bytes): Change type of 'len' to ULONGEST.
|
|
|
|
|
|
2014-01-22 15:52:15 +00:00
|
|
|
|
2014-01-23 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR python/16485:
|
|
|
|
|
* python/lib/gdb/FrameDecorator.py: (FrameVars.fetch_frame_args):
|
|
|
|
|
Handle exception from frame.block.
|
|
|
|
|
(FrameVars.fetch_frame_locals): Likewise.
|
|
|
|
|
|
2014-01-22 15:44:41 +00:00
|
|
|
|
2014-01-23 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR python/16487:
|
|
|
|
|
* python/py-framefilter.c (py_print_frame): Don't call Py_DECREF
|
|
|
|
|
on a NULL pointer. Move "goto error" to correct place.
|
|
|
|
|
|
2014-01-22 15:10:01 +00:00
|
|
|
|
2014-01-23 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR python/16491:
|
|
|
|
|
* python/py-framefilter.c (apply_frame_filter): Call
|
|
|
|
|
ensure_python_env after computing gdbarch.
|
|
|
|
|
|
2013-12-16 06:39:12 +00:00
|
|
|
|
2014-01-23 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* target.c (raw_memory_xfer_partial): Change argument type
|
|
|
|
|
from void * to gdb_byte *.
|
|
|
|
|
(memory_xfer_partial_1, memory_xfer_partial): Likewise.
|
|
|
|
|
|
2014-01-22 22:17:39 +00:00
|
|
|
|
2014-01-22 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
New gdbserver option --debug-format=timestamp.
|
|
|
|
|
* NEWS: Mention it.
|
|
|
|
|
|
2014-01-22 17:54:43 +00:00
|
|
|
|
2014-01-22 Andreas Arnez <arnez@vnet.linux.ibm.com>
|
|
|
|
|
|
|
|
|
|
* syscalls/s390x-linux.xml: New file.
|
|
|
|
|
* syscalls/s390-linux.xml: New file.
|
|
|
|
|
* s390-linux-tdep.c (XML_SYSCALL_FILENAME_S390): New macro.
|
|
|
|
|
(XML_SYSCALL_FILENAME_S390X): Likewise.
|
|
|
|
|
(op_svc): New enum value for SVC opcode.
|
|
|
|
|
(s390_sigtramp_frame_sniffer): Replace literal by 'op_svc'.
|
|
|
|
|
(s390_linux_get_syscall_number): New function.
|
|
|
|
|
(s390_gdbarch_init): Register '*get_syscall_number' and the
|
|
|
|
|
syscall xml file name.
|
|
|
|
|
* data-directory/Makefile.in (SYSCALLS_FILES): Add
|
|
|
|
|
"s390-linux.xml" and "s390x-linux.xml".
|
|
|
|
|
* NEWS: Announce new feature.
|
|
|
|
|
|
2014-01-22 13:02:29 +00:00
|
|
|
|
2014-01-22 Baruch Siach <baruch@tkos.co.il>
|
|
|
|
|
|
|
|
|
|
* xtensa-tdep.h (xtensa_elf_greg_t): Change type to uint32_t.
|
|
|
|
|
|
2014-01-22 12:01:53 +00:00
|
|
|
|
2014-01-22 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* xtensa-config.c: Include defs.h.
|
|
|
|
|
|
2014-01-21 10:16:57 +00:00
|
|
|
|
2014-01-22 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* common/common-utils.h: Add "ARI:" comment beside __func__
|
|
|
|
|
reference.
|
|
|
|
|
|
2014-01-21 10:20:50 +00:00
|
|
|
|
2014-01-22 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* common/common-utils.h (FUNCTION_NAME): Expand the macro's
|
|
|
|
|
documentation a bit.
|
|
|
|
|
|
2014-01-21 19:01:04 +00:00
|
|
|
|
2014-01-21 Roland McGrath <mcgrathr@google.com>
|
|
|
|
|
|
|
|
|
|
* configure.ac: Call AM_PROG_INSTALL_STRIP.
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
* aclocal.m4: Regenerate.
|
|
|
|
|
* Makefile.in (install_sh, INSTALL_STRIP_PROGRAM, STRIP):
|
|
|
|
|
New substituted variables.
|
|
|
|
|
(install-strip): New target.
|
|
|
|
|
(INSTALL_SCRIPT): New substituted variable.
|
|
|
|
|
(FLAGS_TO_PASS): Add it.
|
|
|
|
|
(install-only): Use $(INSTALL_SCRIPT) rather than
|
|
|
|
|
$(INSTALL_PROGRAM) for gcore.
|
|
|
|
|
|
2013-12-27 05:06:27 +00:00
|
|
|
|
2014-01-20 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* cli/cli-decode.h (struct cmd_list_element): Move all bitfields
|
|
|
|
|
together.
|
|
|
|
|
|
convert flags to bitfields
This changes various flags struct cmd_list_element into bitfields. In
general I think bitfields are cleaner than flag words, at least in a
case like this where there is no need to pass the flags around
independently of the enclosing struct.
2014-01-20 Tom Tromey <tromey@redhat.com>
* cli/cli-decode.c (add_cmd, deprecate_cmd, add_alias_cmd)
(add_setshow_cmd_full, delete_cmd, lookup_cmd_1)
(deprecated_cmd_warning, complete_on_cmdlist): Update.
* cli/cli-decode.h (CMD_DEPRECATED, DEPRECATED_WARN_USER)
(MALLOCED_REPLACEMENT, DOC_ALLOCATED): Remove.
(struct cmd_list_element) <flags>: Remove.
<cmd_deprecated, deprecated_warn_user, malloced_replacement,
doc_allocated>: New fields.
<hook_in, allow_unknown, abbrev_flag, type, var_type>: Now
bitfields.
* maint.c (maintenance_do_deprecate): Update.
* top.c (execute_command): Update.
2013-12-27 05:04:40 +00:00
|
|
|
|
2014-01-20 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* cli/cli-decode.c (add_cmd, deprecate_cmd, add_alias_cmd)
|
|
|
|
|
(add_setshow_cmd_full, delete_cmd, lookup_cmd_1)
|
|
|
|
|
(deprecated_cmd_warning, complete_on_cmdlist): Update.
|
|
|
|
|
* cli/cli-decode.h (CMD_DEPRECATED, DEPRECATED_WARN_USER)
|
|
|
|
|
(MALLOCED_REPLACEMENT, DOC_ALLOCATED): Remove.
|
|
|
|
|
(struct cmd_list_element) <flags>: Remove.
|
|
|
|
|
<cmd_deprecated, deprecated_warn_user, malloced_replacement,
|
|
|
|
|
doc_allocated>: New fields.
|
|
|
|
|
<hook_in, allow_unknown, abbrev_flag, type, var_type>: Now
|
|
|
|
|
bitfields.
|
|
|
|
|
* maint.c (maintenance_do_deprecate): Update.
|
|
|
|
|
* top.c (execute_command): Update.
|
|
|
|
|
|
2014-01-20 07:53:12 +00:00
|
|
|
|
2014-01-20 Baruch Siach <baruch@tkos.co.il>
|
|
|
|
|
|
|
|
|
|
* xtensa-linux-nat.c: Include asm/ptrace.h.
|
|
|
|
|
|
2014-01-18 17:27:28 +00:00
|
|
|
|
2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (SFILES): Add d-support.c.
|
|
|
|
|
(COMMON_OBS): Add d-support.o.
|
|
|
|
|
* d-lang.h (d_parse_symbol): Add comment, now defined in
|
|
|
|
|
d-support.c.
|
|
|
|
|
* d-lang.c (parse_call_convention)
|
|
|
|
|
(parse_attributes, parse_function_types)
|
|
|
|
|
(parse_function_args, parse_type, parse_identifier)
|
|
|
|
|
(call_convention_p, d_parse_symbol): Move functions to ...
|
|
|
|
|
* d-support.c: ... New file.
|
|
|
|
|
|
2014-01-18 17:22:00 +00:00
|
|
|
|
2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
|
|
|
|
|
|
|
|
|
|
* d-lang.h (d_parse_symbol): Add declaration.
|
|
|
|
|
* d-lang.c (extract_identifiers)
|
|
|
|
|
(extract_type_info): Remove functions.
|
|
|
|
|
(parse_call_convention, parse_attributes)
|
|
|
|
|
(parse_function_types, parse_function_args)
|
|
|
|
|
(parse_type, parse_identifier, call_convention_p)
|
|
|
|
|
(d_parse_symbol): New functions.
|
|
|
|
|
(d_demangle): Use d_parse_symbol to demangle D symbols.
|
|
|
|
|
|
2014-01-18 17:18:23 +00:00
|
|
|
|
2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
|
|
|
|
|
|
|
|
|
|
* d-lang.h (struct builtin_d_type): New data type.
|
|
|
|
|
(builtin_d_type): Add declaration.
|
|
|
|
|
* d-lang.c (d_language_arch_info, build_d_types)
|
|
|
|
|
(builtin_d_type): New functions.
|
|
|
|
|
(enum d_primitive_types): New data type.
|
|
|
|
|
(d_language_defn): Change c_language_arch_info to
|
|
|
|
|
d_language_arch_info.
|
|
|
|
|
(d_type_data): New static variable.
|
|
|
|
|
(_initialize_d_language): Initialize d_type_data.
|
|
|
|
|
|
2014-01-18 17:09:43 +00:00
|
|
|
|
2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
|
|
|
|
|
|
|
|
|
|
* d-lang.h (d_main_name): Add declaration.
|
|
|
|
|
* d-lang.c (d_main_name): New function.
|
|
|
|
|
* symtab.c (find_main_name): Add call to d_main_name.
|
|
|
|
|
|
2014-01-18 18:04:08 +00:00
|
|
|
|
2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
|
|
|
|
|
|
|
|
|
|
* d-lang.c (d_language_defn): Change macro_expansion_c to
|
|
|
|
|
macro_expansion_no.
|
|
|
|
|
|
2014-01-18 18:02:41 +00:00
|
|
|
|
2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
|
|
|
|
|
|
|
|
|
|
* MAINTAINERS: Add myself as a write-after-approval maintainer.
|
|
|
|
|
|
2014-01-17 21:39:57 +00:00
|
|
|
|
2014-01-17 Sergio Durigan Junior <sergiodj@redhat.com>
|
|
|
|
|
|
|
|
|
|
* breakpoint.c (insert_bp_location): Add "volatile" keyword to "struct
|
|
|
|
|
gdb_exception" declaration.
|
|
|
|
|
* remote.c (getpkt_or_notif_sane): Likewise.
|
|
|
|
|
|
2014-01-17 18:23:29 +00:00
|
|
|
|
2014-01-17 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* common/gdb_vecs.c (delim_string_to_char_ptr_vec_append): New
|
|
|
|
|
function, contents of dirnames_to_char_ptr_vec_append moved here.
|
|
|
|
|
(delim_string_to_char_ptr_vec): New function.
|
|
|
|
|
(dirnames_to_char_ptr_vec_append): Rewrite.
|
|
|
|
|
* common/gdb_vecs.h (delim_string_to_char_ptr_vec): Declare.
|
|
|
|
|
|
2014-01-17 18:00:07 +00:00
|
|
|
|
2014-01-17 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* common/common-utils.h (FUNCTION_NAME): Renamed from ASSERT_FUNCTION,
|
|
|
|
|
and moved here ...
|
|
|
|
|
* common/gdb_assert.h (ASSERT_FUNCTION): ... from here.
|
|
|
|
|
#include "common-utils.h".
|
|
|
|
|
(gdb_assert, gdb_assert_fail, gdb_assert_not_reached): Update.
|
|
|
|
|
* common/vec.h (VEC_ASSERT_PASS): Update.
|
|
|
|
|
* darwin-nat.h: Replace #include of gdb_assert.h with common-utils.h.
|
|
|
|
|
(MACH_CHECK_ERROR): Update.
|
|
|
|
|
|
2014-01-17 09:54:56 +00:00
|
|
|
|
2014-01-17 Simon Marchi <simon.marchi@ericsson.com>
|
|
|
|
|
|
|
|
|
|
* gdbarch.sh (gdbarch_address_class_name_to_type_flags): Add
|
|
|
|
|
comments.
|
|
|
|
|
* gdbarch.h: Regenerate.
|
|
|
|
|
|
2013-12-28 05:22:07 +00:00
|
|
|
|
2014-01-16 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* value.c (struct value) <regnum>: Move earlier.
|
|
|
|
|
|
2013-12-18 15:27:54 +00:00
|
|
|
|
2014-01-16 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* remote.c (extended_remote_create_inferior): Rename from
|
|
|
|
|
extended_remote_create_inferior_1. Add "ops" argument. Remove
|
|
|
|
|
old implementation.
|
|
|
|
|
|
Fix gdb.trace/mi-traceframe-changed.exp on s390.
The test fails on s390 with:
-trace-find frame-number 0^M
&"PC not available\n"^M
^done,found="1",tracepoint="1",traceframe="0",frame={level="-1",addr="<unavailable>",func="??",args=[]}^M
(gdb) ^M
FAIL: gdb.trace/mi-traceframe-changed.exp: tfile: -trace-find frame-number 0
tfile knows to infer the PC from the tracepoint's address if the PC
wasn't collected (tfile_fetch_registers) but, that only works on
targets whose PC register is a raw register, and on s390, the PC
register is a pseudo register.
But even if GDB doesn't know how to infer the value of PC, saying the
current frame is level -1 is a bug:
^done,found="1",tracepoint="1",traceframe="0",frame={level="-1",addr="<unavailable>",func="??",args=[]}^M
^^^^^^^^^
'-1' is the level of the sentinel frame, which should never be visible.
This is caused by the s390's heuristic unwinder accepting the frame
(the fallback heuristic unwinders _always_ accept the frame), but then
the unwind->this_id method throws that "PC not available\n" error.
IOW, the s390's heuristic unwinder was never adjusted to handle
unavailable register values gracefully, which can happen with e.g., a
trimmed core file too.
This is just the minimal necessary for
<unavailable> frames, which at least gets us:
(gdb) tfind
Found trace frame 0, tracepoint 1
#0 <unavailable> in ?? ()
That is, frame #0 instead of -1.
We could get better info out of "info frame" (this patch makes us show
"outermost"), but this change would still be necessary.
gdb/
2014-01-16 Pedro Alves <palves@redhat.com>
* s390-linux-tdep.c (s390_frame_unwind_cache): Swallow
NOT_AVAILABLE_ERROR errors while parsing the prologue or reading
the backchain.
2014-01-16 17:43:26 +00:00
|
|
|
|
2014-01-16 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* s390-linux-tdep.c (s390_frame_unwind_cache): Swallow
|
|
|
|
|
NOT_AVAILABLE_ERROR errors while parsing the prologue or reading
|
|
|
|
|
the backchain.
|
|
|
|
|
|
2014-01-16 17:29:10 +00:00
|
|
|
|
2014-01-16 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* dwarf2read.c (open_and_init_dwp_file): Fix typo in comment.
|
|
|
|
|
|
2013-05-06 14:04:46 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* btrace.h (btrace_thread_flag): New.
|
|
|
|
|
(struct btrace_thread_info) <flags>: New.
|
|
|
|
|
* record-btrace.c (record_btrace_resume_thread)
|
|
|
|
|
(record_btrace_find_thread_to_move, btrace_step_no_history)
|
|
|
|
|
(btrace_step_stopped, record_btrace_start_replaying)
|
|
|
|
|
(record_btrace_step_thread, record_btrace_decr_pc_after_break)
|
|
|
|
|
(record_btrace_find_resume_thread): New.
|
|
|
|
|
(record_btrace_resume, record_btrace_wait): Extend.
|
|
|
|
|
(record_btrace_can_execute_reverse): New.
|
|
|
|
|
(record_btrace_open): Fail in non-stop mode.
|
|
|
|
|
(record_btrace_set_replay): Split into this, ...
|
|
|
|
|
(record_btrace_stop_replaying): ... this, ...
|
|
|
|
|
(record_btrace_clear_histories): ... and this.
|
|
|
|
|
(init_record_btrace_ops): Init to_can_execute_reverse.
|
|
|
|
|
* NEWS: Announce it.
|
|
|
|
|
|
2013-12-18 10:09:34 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* target.h (struct target_ops) <to_decr_pc_after_break>: New.
|
|
|
|
|
(forward_target_decr_pc_after_break)
|
|
|
|
|
(target_decr_pc_after_break): New.
|
|
|
|
|
* target.c (forward_target_decr_pc_after_break)
|
|
|
|
|
(target_decr_pc_after_break): New.
|
|
|
|
|
* aix-thread.c (aix_thread_wait): Call target_decr_pc_after_break
|
|
|
|
|
instead of gdbarch_decr_pc_after_break.
|
|
|
|
|
* darwin-nat.c (cancel_breakpoint): Call target_decr_pc_after_break
|
|
|
|
|
instead of gdbarch_decr_pc_after_break.
|
|
|
|
|
* infrun.c (adjust_pc_after_break): Call target_decr_pc_after_break
|
|
|
|
|
instead of gdbarch_decr_pc_after_break.
|
|
|
|
|
* linux-nat.c (cancel_breakpoint): Call target_decr_pc_after_break
|
|
|
|
|
instead of gdbarch_decr_pc_after_break.
|
|
|
|
|
* linux-thread-db.c (check_event): Call target_decr_pc_after_break
|
|
|
|
|
instead of gdbarch_decr_pc_after_break.
|
|
|
|
|
* record-full.c (record_full_wait_1): Call target_decr_pc_after_break
|
|
|
|
|
instead of gdbarch_decr_pc_after_break.
|
|
|
|
|
|
2013-09-10 10:27:14 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* btrace.c: Include regcache.h.
|
|
|
|
|
(btrace_add_pc): New.
|
|
|
|
|
(btrace_enable): Call btrace_add_pc.
|
|
|
|
|
(btrace_is_empty): New.
|
|
|
|
|
* btrace.h (btrace_is_empty): New.
|
|
|
|
|
* record-btrace.c (require_btrace, record_btrace_info): Call
|
|
|
|
|
btrace_is_empty.
|
|
|
|
|
|
2013-06-03 13:39:35 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* common/linux-btrace.c (perf_event_read_bts, linux_read_btrace):
|
|
|
|
|
Support delta reads.
|
|
|
|
|
(linux_disable_btrace): Change return type.
|
|
|
|
|
* common/linux-btrace.h (linux_read_btrace): Change parameters
|
|
|
|
|
and return type to allow error reporting. Update users.
|
|
|
|
|
(linux_disable_btrace): Change return type. Update users.
|
|
|
|
|
* common/btrace-common.h (btrace_read_type) <BTRACE_READ_DELTA>:
|
|
|
|
|
New.
|
|
|
|
|
(btrace_error): New.
|
|
|
|
|
(btrace_block) <begin>: Comment on BEGIN == 0.
|
|
|
|
|
* btrace.c (btrace_compute_ftrace): Start from the end of
|
|
|
|
|
the current trace.
|
|
|
|
|
(btrace_stitch_trace, btrace_clear_history): New.
|
|
|
|
|
(btrace_fetch): Read delta trace, return if replaying.
|
|
|
|
|
(btrace_clear): Move clear history code to btrace_clear_history.
|
|
|
|
|
(parse_xml_btrace): Throw an error if parsing failed.
|
|
|
|
|
* target.h (struct target_ops) <to_read_btrace>: Change parameters
|
|
|
|
|
and return type to allow error reporting.
|
|
|
|
|
(target_read_btrace): Change parameters and return type to allow
|
|
|
|
|
error reporting.
|
|
|
|
|
* target.c (target_read_btrace): Update.
|
|
|
|
|
* remote.c (remote_read_btrace): Support delta reads. Pass
|
|
|
|
|
errors on.
|
|
|
|
|
* NEWS: Announce it.
|
|
|
|
|
|
2013-03-27 08:49:47 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* record.h (record_btrace_frame_unwind)
|
|
|
|
|
(record_btrace_tailcall_frame_unwind): New declarations.
|
|
|
|
|
* dwarf2-frame: Include record.h
|
|
|
|
|
(dwarf2_frame_cfa): Throw an error for btrace frames.
|
|
|
|
|
* record-btrace.c: Include hashtab.h.
|
|
|
|
|
(btrace_get_bfun_name): New.
|
|
|
|
|
(btrace_call_history): Call btrace_get_bfun_name.
|
|
|
|
|
(struct btrace_frame_cache): New.
|
|
|
|
|
(bfcache): New.
|
|
|
|
|
(bfcache_hash, bfcache_eq, bfcache_new): New.
|
|
|
|
|
(btrace_get_frame_function): New.
|
|
|
|
|
(record_btrace_frame_unwind_stop_reason): Allow unwinding.
|
|
|
|
|
(record_btrace_frame_this_id): Compute own id.
|
|
|
|
|
(record_btrace_frame_prev_register): Provide PC, throw_error
|
|
|
|
|
for all other registers.
|
|
|
|
|
(record_btrace_frame_sniffer): Detect btrace frames.
|
|
|
|
|
(record_btrace_tailcall_frame_sniffer): New.
|
|
|
|
|
(record_btrace_frame_dealloc_cache): New.
|
|
|
|
|
(record_btrace_frame_unwind): Add new functions.
|
|
|
|
|
(record_btrace_tailcall_frame_unwind): New.
|
|
|
|
|
(_initialize_record_btrace): Allocate cache.
|
|
|
|
|
* btrace.c (btrace_clear): Call reinit_frame_cache.
|
|
|
|
|
* NEWS: Announce it.
|
|
|
|
|
|
2013-03-25 15:01:33 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* record-btrace.c (record_btrace_set_replay)
|
|
|
|
|
(record_btrace_goto_begin, record_btrace_goto_end)
|
|
|
|
|
(record_btrace_goto): New.
|
|
|
|
|
(init_record_btrace_ops): Initialize them.
|
|
|
|
|
* NEWS: Announce it.
|
|
|
|
|
|
2013-05-03 08:51:13 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* record-btrace.c (record_btrace_find_new_threads)
|
|
|
|
|
(record_btrace_thread_alive): New.
|
|
|
|
|
(init_record_btrace_ops): Initialize to_find_new_threads and
|
|
|
|
|
to_thread_alive.
|
|
|
|
|
|
2013-03-25 14:44:43 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* record-btrace.c (record_btrace_resume): New.
|
|
|
|
|
(record_btrace_wait): New.
|
|
|
|
|
(init_record_btrace_ops): Initialize to_wait and to_resume.
|
|
|
|
|
|
2013-04-24 11:24:11 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* record-btrace.c (record_btrace_xfer_partial)
|
|
|
|
|
(record_btrace_insert_breakpoint, record_btrace_remove_breakpoint)
|
|
|
|
|
(record_btrace_allow_memory_access): New.
|
|
|
|
|
(init_record_btrace_ops): Initialize new methods.
|
|
|
|
|
* target.c (raw_memory_xfer_partial): Bail out if target reports
|
|
|
|
|
that this memory is not available.
|
|
|
|
|
|
target, breakpoint: allow insert/remove breakpoint to be forwarded
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
* target.h (target_ops) <to_insert_breakpoint>
<to_remove_breakpoint>: Add target_ops parameter.
(forward_target_insert_breakpoint): New.
(forward_target_remove_breakpoint): New.
(memory_remove_breakpoint, memory_insert_breakpoint):
Add target_ops parameter.
* target.c (target_insert_breakpoint): Split into this and ...
(forward_target_insert_breakpoint): ... this.
(target_remove_breakpoint): Split into this and ...
(forward_target_remove_breakpoint): ... this.
(debug_to_insert_breakpoint): Add target_ops parameter.
Call forward_target_insert_breakpoint.
(debug_to_remove_breakpoint): Add target_ops parameter.
Call forward_target_remove_breakpoint.
(update_current_target): Do not inherit or default to_insert_breakpoint
and to_remove_breakpoint.
* corelow.c (ignore): Add target_ops parameter.
* exec.c (ignore): Add target_ops parameter.
* mem-break.c (memory_insert_breakpoint, memory_remove_breakpoint):
Add target_ops parameter.
* monitor.c (monitor_insert_breakpoint, monitor_remove_breakpoint):
Add target_ops parameter.
* nto-procfs.c (procfs_insert_breakpoint, procfs_remove_breakpoint):
Add target_ops parameter.
* record-full.c (record_full_beneath_to_insert_breakpoint)
(record_full_beneath_to_remove_breakpoint, tmp_to_insert_breakpoint)
(tmp_to_remove_breakpoint, record_full_insert_breakpoint)
(record_full_remove_breakpoint, record_full_core_insert_breakpoint)
(record_full_core_remove_breakpoint): Add target_ops parameter.
Update users.
(record_full_beneath_to_insert_breakpoint_ops)
(record_full_beneath_to_remove_breakpoint_ops)
(tmp_to_insert_breakpoint_ops, tmp_to_remove_breakpoint_ops): New.
(record_full_open): Initialize tmp_to_insert_breakpoint_ops,
tmp_to_remove_breakpoint_ops,
record_full_beneath_to_insert_breakpoint_ops, and
record_full_beneath_to_remove_breakpoint_ops.
* remote-m32r-sdi.c (m32r_insert_breakpoint)
(m32r_remove_breakpoint): Add target_ops parameter.
* remote-mips.c (mips_insert_breakpoint, mips_remove_breakpoint):
Add target_ops parameter.
* remote.c (remote_insert_breakpoint, remote_remove_breakpoint):
Add target_ops parameter.
2013-12-17 09:49:03 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* target.h (target_ops) <to_insert_breakpoint>
|
|
|
|
|
<to_remove_breakpoint>: Add target_ops parameter.
|
|
|
|
|
(forward_target_insert_breakpoint): New.
|
|
|
|
|
(forward_target_remove_breakpoint): New.
|
|
|
|
|
(memory_remove_breakpoint, memory_insert_breakpoint):
|
|
|
|
|
Add target_ops parameter.
|
|
|
|
|
* target.c (target_insert_breakpoint): Split into this and ...
|
|
|
|
|
(forward_target_insert_breakpoint): ... this.
|
|
|
|
|
(target_remove_breakpoint): Split into this and ...
|
|
|
|
|
(forward_target_remove_breakpoint): ... this.
|
|
|
|
|
(debug_to_insert_breakpoint): Add target_ops parameter.
|
|
|
|
|
Call forward_target_insert_breakpoint.
|
|
|
|
|
(debug_to_remove_breakpoint): Add target_ops parameter.
|
|
|
|
|
Call forward_target_remove_breakpoint.
|
|
|
|
|
(update_current_target): Do not inherit or default to_insert_breakpoint
|
|
|
|
|
and to_remove_breakpoint.
|
|
|
|
|
* corelow.c (ignore): Add target_ops parameter.
|
|
|
|
|
* exec.c (ignore): Add target_ops parameter.
|
|
|
|
|
* mem-break.c (memory_insert_breakpoint, memory_remove_breakpoint):
|
|
|
|
|
Add target_ops parameter.
|
|
|
|
|
* monitor.c (monitor_insert_breakpoint, monitor_remove_breakpoint):
|
|
|
|
|
Add target_ops parameter.
|
|
|
|
|
* nto-procfs.c (procfs_insert_breakpoint, procfs_remove_breakpoint):
|
|
|
|
|
Add target_ops parameter.
|
|
|
|
|
* record-full.c (record_full_beneath_to_insert_breakpoint)
|
|
|
|
|
(record_full_beneath_to_remove_breakpoint, tmp_to_insert_breakpoint)
|
|
|
|
|
(tmp_to_remove_breakpoint, record_full_insert_breakpoint)
|
|
|
|
|
(record_full_remove_breakpoint, record_full_core_insert_breakpoint)
|
|
|
|
|
(record_full_core_remove_breakpoint): Add target_ops parameter.
|
|
|
|
|
Update users.
|
|
|
|
|
(record_full_beneath_to_insert_breakpoint_ops)
|
|
|
|
|
(record_full_beneath_to_remove_breakpoint_ops)
|
|
|
|
|
(tmp_to_insert_breakpoint_ops, tmp_to_remove_breakpoint_ops): New.
|
|
|
|
|
(record_full_open): Initialize tmp_to_insert_breakpoint_ops,
|
|
|
|
|
tmp_to_remove_breakpoint_ops,
|
|
|
|
|
record_full_beneath_to_insert_breakpoint_ops, and
|
|
|
|
|
record_full_beneath_to_remove_breakpoint_ops.
|
|
|
|
|
* remote-m32r-sdi.c (m32r_insert_breakpoint)
|
|
|
|
|
(m32r_remove_breakpoint): Add target_ops parameter.
|
|
|
|
|
* remote-mips.c (mips_insert_breakpoint, mips_remove_breakpoint):
|
|
|
|
|
Add target_ops parameter.
|
|
|
|
|
* remote.c (remote_insert_breakpoint, remote_remove_breakpoint):
|
|
|
|
|
Add target_ops parameter.
|
|
|
|
|
|
2013-03-18 15:47:01 +00:00
|
|
|
|
2014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* record-btrace.c: Include frame-unwind.h.
|
|
|
|
|
(record_btrace_frame_unwind_stop_reason)
|
|
|
|
|
(record_btrace_frame_this_id, record_btrace_frame_prev_register)
|
|
|
|
|
(record_btrace_frame_sniffer, record_btrace_frame_unwind):
|
|
|
|
|
New.
|
|
|
|
|
(init_record_btrace_ops): Install it.
|
|
|
|
|
|
2013-03-18 15:43:05 +00:00
|
|
|
|
2014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* frame.c (get_frame_unwind_stop_reason): Unconditionally call
|
|
|
|
|
get_prev_frame_1.
|
|
|
|
|
|
2013-03-18 15:43:05 +00:00
|
|
|
|
2014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* dwarf2-frame.c (dwarf2_frame_cfa): Move UNWIND_UNAVAILABLE check
|
|
|
|
|
earlier.
|
|
|
|
|
|
2013-03-18 15:43:05 +00:00
|
|
|
|
2014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
* frame-unwind.c: Include target.h.
|
|
|
|
|
(frame_unwind_try_unwinder): New function with code from ...
|
|
|
|
|
(frame_unwind_find_by_frame): ... here. New variable
|
|
|
|
|
unwinder_from_target, call also target_get_unwinder)
|
|
|
|
|
(target_get_tailcall_unwinder, and frame_unwind_try_unwinder for it.
|
|
|
|
|
* target.c (target_get_unwinder, target_get_tailcall_unwinder): New.
|
|
|
|
|
* target.h (struct target_ops): New fields to_get_unwinder and
|
|
|
|
|
to_get_tailcall_unwinder.
|
|
|
|
|
(target_get_unwinder, target_get_tailcall_unwinder): New declarations.
|
|
|
|
|
|
2013-03-28 09:38:24 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* record-btrace.c (record_btrace_fetch_registers)
|
|
|
|
|
(record_btrace_store_registers)
|
|
|
|
|
(record_btrace_to_prepare_to_store): New.
|
|
|
|
|
(init_record_btrace_ops): Add the above.
|
|
|
|
|
|
2014-01-13 13:24:50 +00:00
|
|
|
|
2014-01-16 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* windows-nat.c (windows_prepare_to_store): Add 'self' argument.
|
|
|
|
|
* target.h (struct target_ops) <to_prepare_to_store>: Add
|
|
|
|
|
argument.
|
|
|
|
|
(target_prepare_to_store): Add argument.
|
|
|
|
|
* target.c (debug_to_prepare_to_store): Add argument.
|
|
|
|
|
(update_current_target): Update.
|
|
|
|
|
* remote.c (remote_prepare_to_store): Add 'self' argument.
|
|
|
|
|
* remote-sim.c (gdbsim_prepare_to_store): Add 'self' argument.
|
|
|
|
|
* remote-mips.c (mips_prepare_to_store): Add 'self' argument.
|
|
|
|
|
* remote-m32r-sdi.c (m32r_prepare_to_store): Add 'self' argument.
|
|
|
|
|
* record-full.c (record_full_core_prepare_to_store): Add 'self'
|
|
|
|
|
argument.
|
|
|
|
|
* ravenscar-thread.c (ravenscar_prepare_to_store): Add argument.
|
|
|
|
|
* nto-procfs.c (procfs_prepare_to_store): Add 'self' argument.
|
|
|
|
|
* monitor.c (monitor_prepare_to_store): Add 'self' argument.
|
|
|
|
|
* inf-child.c (inf_child_prepare_to_store): Add 'self' argument.
|
|
|
|
|
* go32-nat.c (go32_prepare_to_store): Add 'self' argument.
|
|
|
|
|
|
2013-04-26 06:37:06 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* btrace.h (replay) <replay>: New.
|
|
|
|
|
(btrace_is_replaying): New.
|
|
|
|
|
* btrace.c (btrace_clear): Free replay iterator.
|
|
|
|
|
(btrace_is_replaying): New.
|
|
|
|
|
* record-btrace.c (record_btrace_is_replaying): New.
|
|
|
|
|
(record_btrace_info): Print insn number if replaying.
|
|
|
|
|
(record_btrace_insn_history): Start at replay position.
|
|
|
|
|
(record_btrace_call_history): Start at replay position.
|
|
|
|
|
(init_record_btrace_ops): Init to_record_is_replaying.
|
|
|
|
|
|
2013-04-17 07:39:43 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* record-btrace.c (record_btrace_insn_history_range): Include
|
|
|
|
|
end.
|
|
|
|
|
(record_btrace_insn_history_from): Adjust range.
|
|
|
|
|
(record_btrace_call_history_range): Include
|
|
|
|
|
end.
|
|
|
|
|
(record_btrace_call_history_from): Adjust range.
|
|
|
|
|
* NEWS: Announce changes.
|
|
|
|
|
|
2013-04-18 08:58:05 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* record.h (enum record_print_flag)
|
|
|
|
|
<record_print_indent_calls>: New.
|
|
|
|
|
* record.c (get_call_history_modifiers): Recognize /c modifier.
|
|
|
|
|
(_initialize_record): Document /c modifier.
|
|
|
|
|
* record-btrace.c (btrace_call_history): Add btinfo parameter.
|
|
|
|
|
Reorder fields. Optionally indent the function name. Update
|
|
|
|
|
all users.
|
|
|
|
|
* NEWS: Announce changes.
|
|
|
|
|
|
2013-04-10 11:43:41 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* common/linux-btrace.c (linux_enable_btrace): Enlarge buffer.
|
|
|
|
|
|
2013-05-13 12:57:42 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* btrace.c (ftrace_new_function): Start counting at one.
|
|
|
|
|
* record-btrace.c (record_btrace_info): Adjust number of calls
|
|
|
|
|
and insns.
|
|
|
|
|
* NEWS: Announce it.
|
|
|
|
|
|
2013-03-26 10:32:20 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* record-btrace.c (btrace_call_history_insn_range): Print
|
|
|
|
|
insn range as [begin, end].
|
|
|
|
|
|
btrace: change branch trace data structure
The branch trace is represented as 3 vectors:
- a block vector
- a instruction vector
- a function vector
Each vector (except for the first) is computed from the one above.
Change this into a graph where a node represents a sequence of instructions
belonging to the same function and where we have three types of edges to connect
the function segments:
- control flow
- same function (instance)
- call stack
This allows us to navigate in the branch trace. We will need this for "record
goto" and reverse execution.
This patch introduces the data structure and computes the control flow edges.
It also introduces iterator structs to simplify iterating over the branch trace
in control-flow order.
It also fixes PR gdb/15240 since now recursive calls are handled correctly.
Fix the test that got the number of expected fib instances and also the
function numbers wrong.
The current instruction had been part of the branch trace. This will look odd
once we start support for reverse execution. Remove it. We still keep it in
the trace itself to allow extending the branch trace more easily in the future.
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
* btrace.h (struct btrace_func_link): New.
(enum btrace_function_flag): New.
(struct btrace_inst): Rename to ...
(struct btrace_insn): ...this. Update all users.
(struct btrace_func) <ibegin, iend>: Remove.
(struct btrace_func_link): New.
(struct btrace_func): Rename to ...
(struct btrace_function): ...this. Update all users.
(struct btrace_function) <segment, flow, up, insn, insn_offset)
(number, level, flags>: New.
(struct btrace_insn_iterator): Rename to ...
(struct btrace_insn_history): ...this.
Update all users.
(struct btrace_insn_iterator, btrace_call_iterator): New.
(struct btrace_target_info) <btrace, itrace, ftrace>: Remove.
(struct btrace_target_info) <begin, end, level>
<insn_history, call_history>: New.
(btrace_insn_get, btrace_insn_number, btrace_insn_begin)
(btrace_insn_end, btrace_insn_prev, btrace_insn_next)
(btrace_insn_cmp, btrace_find_insn_by_number, btrace_call_get)
(btrace_call_number, btrace_call_begin, btrace_call_end)
(btrace_call_prev, btrace_call_next, btrace_call_cmp)
(btrace_find_function_by_number, btrace_set_insn_history)
(btrace_set_call_history): New.
* btrace.c (btrace_init_insn_iterator)
(btrace_init_func_iterator, compute_itrace): Remove.
(ftrace_print_function_name, ftrace_print_filename)
(ftrace_skip_file): Change
parameter to const.
(ftrace_init_func): Remove.
(ftrace_debug): Use new btrace_function fields.
(ftrace_function_switched): Also consider gaining and
losing symbol information).
(ftrace_print_insn_addr, ftrace_new_call, ftrace_new_return)
(ftrace_new_switch, ftrace_find_caller, ftrace_new_function)
(ftrace_update_caller, ftrace_fixup_caller, ftrace_new_tailcall):
New.
(ftrace_new_function): Move. Remove debug print.
(ftrace_update_lines, ftrace_update_insns): New.
(ftrace_update_function): Check for call, ret, and jump.
(compute_ftrace): Renamed to ...
(btrace_compute_ftrace): ...this. Rewritten to compute call
stack.
(btrace_fetch, btrace_clear): Updated.
(btrace_insn_get, btrace_insn_number, btrace_insn_begin)
(btrace_insn_end, btrace_insn_prev, btrace_insn_next)
(btrace_insn_cmp, btrace_find_insn_by_number, btrace_call_get)
(btrace_call_number, btrace_call_begin, btrace_call_end)
(btrace_call_prev, btrace_call_next, btrace_call_cmp)
(btrace_find_function_by_number, btrace_set_insn_history)
(btrace_set_call_history): New.
* record-btrace.c (require_btrace): Use new btrace thread
info fields.
(record_btrace_info, btrace_insn_history)
(record_btrace_insn_history, record_btrace_insn_history_range):
Use new btrace thread info fields and new iterator.
(btrace_func_history_src_line): Rename to ...
(btrace_call_history_src_line): ...this. Use new btrace
thread info fields.
(btrace_func_history): Rename to ...
(btrace_call_history): ...this. Use new btrace thread info
fields and new iterator.
(record_btrace_call_history, record_btrace_call_history_range):
Use new btrace thread info fields and new iterator.
testsuite/
* gdb.btrace/function_call_history.exp: Fix expected function
trace.
* gdb.btrace/instruction_history.exp: Initialize traced.
Remove traced_functions.
2013-03-22 13:32:47 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* btrace.h (struct btrace_func_link): New.
|
|
|
|
|
(enum btrace_function_flag): New.
|
|
|
|
|
(struct btrace_inst): Rename to ...
|
|
|
|
|
(struct btrace_insn): ...this. Update all users.
|
|
|
|
|
(struct btrace_func) <ibegin, iend>: Remove.
|
|
|
|
|
(struct btrace_func_link): New.
|
|
|
|
|
(struct btrace_func): Rename to ...
|
|
|
|
|
(struct btrace_function): ...this. Update all users.
|
|
|
|
|
(struct btrace_function) <segment, flow, up, insn, insn_offset)
|
|
|
|
|
(number, level, flags>: New.
|
|
|
|
|
(struct btrace_insn_iterator): Rename to ...
|
|
|
|
|
(struct btrace_insn_history): ...this.
|
|
|
|
|
Update all users.
|
|
|
|
|
(struct btrace_insn_iterator, btrace_call_iterator): New.
|
|
|
|
|
(struct btrace_target_info) <btrace, itrace, ftrace>: Remove.
|
|
|
|
|
(struct btrace_target_info) <begin, end, level>
|
|
|
|
|
<insn_history, call_history>: New.
|
|
|
|
|
(btrace_insn_get, btrace_insn_number, btrace_insn_begin)
|
|
|
|
|
(btrace_insn_end, btrace_insn_prev, btrace_insn_next)
|
|
|
|
|
(btrace_insn_cmp, btrace_find_insn_by_number, btrace_call_get)
|
|
|
|
|
(btrace_call_number, btrace_call_begin, btrace_call_end)
|
|
|
|
|
(btrace_call_prev, btrace_call_next, btrace_call_cmp)
|
|
|
|
|
(btrace_find_function_by_number, btrace_set_insn_history)
|
|
|
|
|
(btrace_set_call_history): New.
|
|
|
|
|
* btrace.c (btrace_init_insn_iterator)
|
|
|
|
|
(btrace_init_func_iterator, compute_itrace): Remove.
|
|
|
|
|
(ftrace_print_function_name, ftrace_print_filename)
|
|
|
|
|
(ftrace_skip_file): Change
|
|
|
|
|
parameter to const.
|
|
|
|
|
(ftrace_init_func): Remove.
|
|
|
|
|
(ftrace_debug): Use new btrace_function fields.
|
|
|
|
|
(ftrace_function_switched): Also consider gaining and
|
|
|
|
|
losing symbol information).
|
|
|
|
|
(ftrace_print_insn_addr, ftrace_new_call, ftrace_new_return)
|
|
|
|
|
(ftrace_new_switch, ftrace_find_caller, ftrace_new_function)
|
|
|
|
|
(ftrace_update_caller, ftrace_fixup_caller, ftrace_new_tailcall):
|
|
|
|
|
New.
|
|
|
|
|
(ftrace_new_function): Move. Remove debug print.
|
|
|
|
|
(ftrace_update_lines, ftrace_update_insns): New.
|
|
|
|
|
(ftrace_update_function): Check for call, ret, and jump.
|
|
|
|
|
(compute_ftrace): Renamed to ...
|
|
|
|
|
(btrace_compute_ftrace): ...this. Rewritten to compute call
|
|
|
|
|
stack.
|
|
|
|
|
(btrace_fetch, btrace_clear): Updated.
|
|
|
|
|
(btrace_insn_get, btrace_insn_number, btrace_insn_begin)
|
|
|
|
|
(btrace_insn_end, btrace_insn_prev, btrace_insn_next)
|
|
|
|
|
(btrace_insn_cmp, btrace_find_insn_by_number, btrace_call_get)
|
|
|
|
|
(btrace_call_number, btrace_call_begin, btrace_call_end)
|
|
|
|
|
(btrace_call_prev, btrace_call_next, btrace_call_cmp)
|
|
|
|
|
(btrace_find_function_by_number, btrace_set_insn_history)
|
|
|
|
|
(btrace_set_call_history): New.
|
|
|
|
|
* record-btrace.c (require_btrace): Use new btrace thread
|
|
|
|
|
info fields.
|
|
|
|
|
(record_btrace_info, btrace_insn_history)
|
|
|
|
|
(record_btrace_insn_history, record_btrace_insn_history_range):
|
|
|
|
|
Use new btrace thread info fields and new iterator.
|
|
|
|
|
(btrace_func_history_src_line): Rename to ...
|
|
|
|
|
(btrace_call_history_src_line): ...this. Use new btrace
|
|
|
|
|
thread info fields.
|
|
|
|
|
(btrace_func_history): Rename to ...
|
|
|
|
|
(btrace_call_history): ...this. Use new btrace thread info
|
|
|
|
|
fields and new iterator.
|
|
|
|
|
(record_btrace_call_history, record_btrace_call_history_range):
|
|
|
|
|
Use new btrace thread info fields and new iterator.
|
|
|
|
|
|
2013-12-18 13:13:54 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* frame.h (frame_id_build_unavailable_stack_special): New.
|
|
|
|
|
* frame.c (frame_id_build_unavailable_stack_special): New.
|
|
|
|
|
|
gdbarch: add instruction predicate methods
Add new methods to gdbarch for analyzing the instruction at a given address.
Implement those methods for i386 and amd64 architectures.
This is needed by "record btrace" to detect function calls in the
execution trace.
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
* amd64-tdep.c (amd64_classify_insn_at, amd64_insn_is_call)
(amd64_insn_is_ret, amd64_insn_is_jump, amd64_jmp_p): New.
(amd64_init_abi): Add insn_is_call, insn_is_ret, and insn_is_jump
to gdbarch.
* i386-tdep.c (i386_insn_is_call, i386_insn_is_ret)
(i386_insn_is_jump, i386_jmp_p): New.
(i386_gdbarch_init): Add insn_is_call, insn_is_ret, and
insn_is_jump to gdbarch.
* gdbarch.sh (insn_is_call, insn_is_ret, insn_is_jump): New.
* gdbarch.h: Regenerated.
* gdbarch.c: Regenerated.
* arch-utils.h (default_insn_is_call, default_insn_is_ret)
(default_insn_is_jump): New.
* arch-utils.c (default_insn_is_call, default_insn_is_ret)
(default_insn_is_jump): New.
2013-03-22 14:56:56 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* amd64-tdep.c (amd64_classify_insn_at, amd64_insn_is_call)
|
|
|
|
|
(amd64_insn_is_ret, amd64_insn_is_jump, amd64_jmp_p): New.
|
|
|
|
|
(amd64_init_abi): Add insn_is_call, insn_is_ret, and insn_is_jump
|
|
|
|
|
to gdbarch.
|
|
|
|
|
* i386-tdep.c (i386_insn_is_call, i386_insn_is_ret)
|
|
|
|
|
(i386_insn_is_jump, i386_jmp_p): New.
|
|
|
|
|
(i386_gdbarch_init): Add insn_is_call, insn_is_ret, and
|
|
|
|
|
insn_is_jump to gdbarch.
|
|
|
|
|
* gdbarch.sh (insn_is_call, insn_is_ret, insn_is_jump): New.
|
|
|
|
|
* gdbarch.h: Regenerated.
|
|
|
|
|
* gdbarch.c: Regenerated.
|
|
|
|
|
* arch-utils.h (default_insn_is_call, default_insn_is_ret)
|
|
|
|
|
(default_insn_is_jump): New.
|
|
|
|
|
* arch-utils.c (default_insn_is_call, default_insn_is_ret)
|
|
|
|
|
(default_insn_is_jump): New.
|
|
|
|
|
|
2013-09-30 13:00:16 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* common/btrace-common.h (btrace_read_type) <btrace_read_all>:
|
|
|
|
|
Change to ...
|
|
|
|
|
(btrace_read_type) <BTRACE_READ_ALL>: ... this. Update users.
|
|
|
|
|
(btrace_read_type) <btrace_read_new>: Change to ...
|
|
|
|
|
(btrace_read_type) <BTRACE_READ_NEW>: ... this. Update users.
|
|
|
|
|
|
2013-06-03 12:32:15 +00:00
|
|
|
|
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
|
|
|
|
|
|
|
|
|
|
* common/linux-btrace.c (linux_read_btrace): Free trace from
|
|
|
|
|
previous iteration.
|
|
|
|
|
|
2014-01-15 21:14:06 +00:00
|
|
|
|
2014-01-15 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* dwarf2read.c (open_and_init_dwp_file): Use pulongest to print
|
|
|
|
|
uint32_t.
|
|
|
|
|
|
2013-12-31 03:34:16 +00:00
|
|
|
|
2014-01-15 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* dbxread.c (process_one_symbol): Use set_objfile_main_name.
|
|
|
|
|
* dwarf2read.c (read_partial_die): Use set_objfile_main_name.
|
|
|
|
|
* objfiles.c (get_objfile_bfd_data): Initialize language_of_main.
|
|
|
|
|
(set_objfile_main_name): New function.
|
|
|
|
|
* objfiles.h (struct objfile_per_bfd_storage) <name_of_main,
|
|
|
|
|
language_of_main>: New fields.
|
|
|
|
|
(set_objfile_main_name): Declare.
|
|
|
|
|
* symtab.c (find_main_name): Loop over objfiles to find the main
|
|
|
|
|
name and language.
|
|
|
|
|
(set_main_name): Now static.
|
|
|
|
|
(get_main_info): Add comment.
|
|
|
|
|
* symtab.h (set_main_name): Don't declare.
|
|
|
|
|
|
2013-12-31 03:18:24 +00:00
|
|
|
|
2014-01-15 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* symtab.c (main_progspace_key): New global.
|
|
|
|
|
(struct main_info): New.
|
|
|
|
|
(name_of_main, language_of_main): Remove.
|
|
|
|
|
(get_main_info, main_info_cleanup): New function.
|
|
|
|
|
(set_main_name, main_name, main_language): Use get_main_info.
|
|
|
|
|
(_initialize_symtab): Initialize main_progspace_key.
|
|
|
|
|
|
2013-12-31 03:05:34 +00:00
|
|
|
|
2014-01-15 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* dbxread.c (process_one_symbol): Update.
|
|
|
|
|
* dwarf2read.c (read_partial_die): Update.
|
|
|
|
|
* symfile.c (set_initial_language): Call main_language.
|
|
|
|
|
* symtab.c (language_of_main): Now static.
|
|
|
|
|
(set_main_name): Add 'lang' parameter.
|
|
|
|
|
(find_main_name): Update.
|
|
|
|
|
(main_language): New function.
|
|
|
|
|
(symtab_observer_executable_changed): Update.
|
|
|
|
|
* symtab.h (set_main_name): Update.
|
|
|
|
|
(language_of_main): Remove.
|
|
|
|
|
(main_language): Declare.
|
|
|
|
|
|
2013-12-31 13:57:18 +00:00
|
|
|
|
2014-01-15 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* symfile.c (init_entry_point_info): Use new "initialized" field.
|
|
|
|
|
Update.
|
|
|
|
|
* objfiles.h (struct entry_point) <initialized>: New field.
|
|
|
|
|
(struct objfile_per_bfd_storage) <ei>: New field, moved from...
|
|
|
|
|
(struct objfile) <ei>: ...here. Remove.
|
|
|
|
|
* objfiles.c (entry_point_address_query): Update.
|
|
|
|
|
|
2013-12-31 13:52:33 +00:00
|
|
|
|
2014-01-15 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* objfiles.c (entry_point_address_query): Relocate entry point
|
|
|
|
|
address.
|
|
|
|
|
(objfile_relocate1): Do not relocate entry point address.
|
|
|
|
|
* objfiles.h (struct entry_info) <entry_point>: Update comment.
|
|
|
|
|
<the_bfd_section_index>: New field.
|
|
|
|
|
* symfile.c (init_entry_point_info): Find the entry point's
|
|
|
|
|
section.
|
|
|
|
|
|
2013-12-31 09:47:37 +00:00
|
|
|
|
2014-01-15 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* solib-frv.c (enable_break): Use entry_point_address_query.
|
|
|
|
|
|
2014-01-03 19:15:36 +00:00
|
|
|
|
2014-01-15 Omair Javaid <omair.javaid@linaro.org>
|
|
|
|
|
|
|
|
|
|
* NEWS: Add note on improved process record-replay on
|
|
|
|
|
arm*-linux* targets.
|
|
|
|
|
|
2014-01-09 10:33:55 +00:00
|
|
|
|
2014-01-15 Omair Javaid <omair.javaid@linaro.org>
|
|
|
|
|
|
|
|
|
|
* arm-tdep.c (enum arm_record_result): New enum.
|
|
|
|
|
(arm_record_unsupported_insn): New function.
|
|
|
|
|
(arm_record_coproc_data_proc): Removed.
|
|
|
|
|
(thumb2_record_ld_st_multiple): New function.
|
|
|
|
|
(thumb2_record_ld_st_dual_ex_tbb): New function.
|
|
|
|
|
(thumb2_record_data_proc_sreg_mimm): New function.
|
|
|
|
|
(thumb2_record_ps_dest_generic): New function.
|
|
|
|
|
(thumb2_record_branch_misc_cntrl): New function.
|
|
|
|
|
(thumb2_record_str_single_data): New function.
|
|
|
|
|
(thumb2_record_ld_mem_hints): New function.
|
|
|
|
|
(thumb2_record_ld_word): New function.
|
|
|
|
|
(thumb2_record_lmul_lmla_div): New function.
|
|
|
|
|
(thumb2_record_decode_insn_handler): New function.
|
|
|
|
|
(decode_insn): Add thumb32 instruction handlers.
|
|
|
|
|
|
2014-01-09 10:49:27 +00:00
|
|
|
|
2014-01-15 Omair Javaid <omair.javaid@linaro.org>
|
|
|
|
|
|
|
|
|
|
* arm-linux-tdep.c: Include "record-full.h" and "linux-record.h".
|
|
|
|
|
(struct arm_linux_record_tdep): Declare.
|
|
|
|
|
(arm_canonicalize_syscall): New function.
|
|
|
|
|
(arm_all_but_pc_registers_record): New function.
|
|
|
|
|
(arm_linux_syscall_record): New function.
|
|
|
|
|
(arm_linux_init_abi): Add syscall recording constructs.
|
|
|
|
|
* arm-tdep.c (thumb_record_ldm_stm_swi): Update thumb syscall
|
|
|
|
|
decoding. (arm_record_coproc_data_proc): Update arm syscall
|
|
|
|
|
decoding.
|
|
|
|
|
* arm-tdep.h (struct gdbarch_tdep) <arm_swi_record>: Remove.
|
|
|
|
|
<arm_syscall_record>: New field.
|
|
|
|
|
* configure.tgt (arm*-*-linux*): Add linux-record.o to
|
|
|
|
|
gdb_target_obs.
|
|
|
|
|
|
2014-01-03 19:15:32 +00:00
|
|
|
|
2014-01-15 Omair Javaid <omair.javaid@linaro.org>
|
|
|
|
|
|
|
|
|
|
* arm-tdep.c (thumb_record_misc): Update to use sp as base
|
|
|
|
|
register for push instruction recording.
|
|
|
|
|
|
2014-01-03 19:15:31 +00:00
|
|
|
|
2014-01-15 Omair Javaid <omair.javaid@linaro.org>
|
|
|
|
|
|
|
|
|
|
* arm-tdep.c (thumb_record_misc): Update to correct logical
|
|
|
|
|
error while recording ldm, ldmia and pop instructions.
|
|
|
|
|
|
2014-01-09 10:35:45 +00:00
|
|
|
|
2014-01-15 Omair Javaid <omair.javaid@linaro.org>
|
|
|
|
|
|
|
|
|
|
* arm-tdep.c (struct arm_mem_r) <addr>: Change type to uint32_t.
|
|
|
|
|
|
Fix go32-nat.c build fallout from to_detach constification.
The recent constification of to_detach missed updating the forward
declaration of go32_detach, breaking the build:
../../src/gdb/go32-nat.c:387:1: error: conflicting types for 'go32_detach'
../../src/gdb/go32-nat.c:240:13: note: previous declaration of 'go32_detach' was here
go32_detach is actually defined before it's ever used, making the
forward declaration is unnecessary. So we can just remove it instead
of updating it. While at it, remove all others in the same situation.
Tested by building a djgpp gdb.
gdb/
2014-01-15 Pedro Alves <palves@redhat.com>
* go32-nat.c (go32_open, go32_close, go32_attach, go32_detach)
(go32_resume, go32_fetch_registers, store_register)
(go32_store_registers, go32_prepare_to_store)
(go32_xfer_memory, go32_files_info, go32_kill_inferior)
(go32_create_inferior, go32_can_run, go32_terminal_init)
(go32_terminal_inferior, go32_terminal_ours): Delete forward
declarations.
2014-01-15 16:18:04 +00:00
|
|
|
|
2014-01-15 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* go32-nat.c (go32_open, go32_close, go32_attach, go32_detach)
|
|
|
|
|
(go32_resume, go32_fetch_registers, store_register)
|
|
|
|
|
(go32_store_registers, go32_prepare_to_store)
|
|
|
|
|
(go32_xfer_memory, go32_files_info, go32_kill_inferior)
|
|
|
|
|
(go32_create_inferior, go32_can_run, go32_terminal_init)
|
|
|
|
|
(go32_terminal_inferior, go32_terminal_ours): Delete forward
|
|
|
|
|
declarations.
|
|
|
|
|
|
2013-12-19 21:33:07 +00:00
|
|
|
|
2014-01-15 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* target.h (async_callback_ftype): New typedef.
|
|
|
|
|
(struct target_ops) <to_async>: Use it.
|
|
|
|
|
|
2014-01-15 12:40:22 +00:00
|
|
|
|
2014-01-15 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* python/py-value.c (get_field_type): Remove unnecessary curly
|
|
|
|
|
braces for single-statement if block.
|
|
|
|
|
|
2014-01-15 12:28:08 +00:00
|
|
|
|
2014-01-15 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* python/py-type.c (convert_field): Add missing empty line
|
|
|
|
|
after declarations.
|
|
|
|
|
|
2014-01-15 02:36:33 +00:00
|
|
|
|
2014-01-14 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* symfile.h (expand_symtabs_matching): Renamed from
|
|
|
|
|
expand_partial_symbol_names. Update prototype.
|
|
|
|
|
(map_symbol_filenames): Renamed from map_partial_symbol_filenames.
|
|
|
|
|
* symfile.c (expand_symtabs_matching): Renamed from
|
|
|
|
|
expand_partial_symbol_names. New args file_matcher, kind.
|
|
|
|
|
Rename arg fun to symbol_matcher.
|
|
|
|
|
(map_symbol_filenames): Renamed from map_partial_symbol_filenames.
|
|
|
|
|
* ada-lang.c (ada_complete_symbol_matcher): Renamed from
|
|
|
|
|
ada_expand_partial_symbol_name.
|
|
|
|
|
(ada_make_symbol_completion_list): Update to call
|
|
|
|
|
expand_symtabs_matching.
|
|
|
|
|
(ada_add_global_exceptions): Call expand_symtabs_matching.
|
|
|
|
|
* mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update to
|
|
|
|
|
call map_symbol_filenames.
|
|
|
|
|
* symtab.c (sources_info): Update to call map_symbol_filenames.
|
|
|
|
|
(search_symbols): Call expand_symtabs_matching.
|
|
|
|
|
(symbol_completion_matcher): Renamed from expand_partial_symbol_name.
|
|
|
|
|
(default_make_symbol_completion_list_break_on): Update to call
|
|
|
|
|
expand_symtabs_matching.
|
|
|
|
|
(make_source_files_completion_list): Update to call
|
|
|
|
|
map_symbol_filenames.
|
|
|
|
|
|
2014-01-15 02:30:31 +00:00
|
|
|
|
2014-01-14 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* symfile.h (expand_symtabs_file_matcher_ftype): New typedef.
|
|
|
|
|
(expand_symtabs_symbol_matcher_ftype): New typedef.
|
|
|
|
|
(quick_symbol_functions.expand_symtabs_matching): Update to use.
|
|
|
|
|
expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
|
|
|
|
|
* symfile.c (expand_partial_symbol_names): Update to use
|
|
|
|
|
expand_symtabs_symbol_matcher_ftype.
|
|
|
|
|
* dwarf2read.c (dw2_expand_symtabs_matching): Update to use
|
|
|
|
|
expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
|
|
|
|
|
Arg name_matcher renamed to symbol_matcher.
|
|
|
|
|
* psymtab.c (recursively_search_psymtabs): Update to use
|
|
|
|
|
expand_symtabs_symbol_matcher_ftype. Arg name_matcher renamed to
|
|
|
|
|
sym_matcher.
|
|
|
|
|
(expand_symtabs_matching_via_partial): Update to use
|
|
|
|
|
expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
|
|
|
|
|
Arg name_matcher renamed to symbol_matcher.
|
|
|
|
|
|
2014-01-15 02:19:51 +00:00
|
|
|
|
2014-01-14 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* psymtab.c (expand_partial_symbol_names): Delete, moved to symfile.c.
|
|
|
|
|
(map_partial_symbol_filenames): Ditto.
|
|
|
|
|
* psymtab.h (expand_partial_symbol_names): Delete, moved to symfile.h.
|
|
|
|
|
(map_partial_symbol_filenames): Ditto.
|
|
|
|
|
* symfile.c (expand_partial_symbol_names): Moved here from psymtab.c.
|
|
|
|
|
(map_partial_symbol_filenames): Ditto.
|
|
|
|
|
* symfile.h (expand_partial_symbol_names): Moved here from psymtab.h.
|
|
|
|
|
(map_partial_symbol_filenames): Ditto.
|
|
|
|
|
* symtab.c: Delete #include "psymtab.h".
|
|
|
|
|
|
Fix "is a record target open" checks.
RECORD_IS_USED and record_full_open look at current_target.to_stratum
to determine whether a record target is in use. This is wrong because
arch_stratum is greater than record_stratum, so if an arch_stratum
target is pushed, RECORD_IS_USED and record_full_open will miss it.
To fix this, we can use the existing find_record_target instead, which
looks up for a record stratum target across the target stack. Since
that means exporting find_record_target in record.h, RECORD_IS_USED
ends up redundant, so the patch eliminates it.
That exercise then reveals other issues:
- adjust_pc_after_break is gating record_full_... calls based on
RECORD_IS_USED. But, record_full_ calls shouldn't be made when
recording with the record-btrace target. So this adds a new
record_full_is_used predicate to be used in that spot.
- record_full_open says "Process record target already running", even
if the recording target is record-btrace ("process record" is the
original complete name of the record-full target). record_btrace_open
only says "The process is already being recorded." and does not
suggest "record stop", like record-full does. The patch factors out
and merges that error to a new record_preopen function that all record
targets call in their open routine.
Tested on x86_64 Fedora 17.
gdb/
2014-01-14 Pedro Alves <palves@redhat.com>
Tom Tromey <tromey@redhat.com>
* infrun.c (use_displaced_stepping): Use find_record_target
instead of RECORD_IS_USED.
(adjust_pc_after_break): Use record_full_is_used instead of
RECORD_IS_USED.
* record-btrace.c (record_btrace_open): Call record_preopen
instead of checking RECORD_IS_USED.
* record-full.c (record_full_shortname)
(record_full_core_shortname): New globals.
(record_full_is_used): New function.
(find_full_open): Call record_preopen instead of checking
RECORD_IS_USED.
(init_record_full_ops): Set the target's shortname to
record_full_shortname.
(init_record_full_core_ops): Set the target's shortname to
record_full_core_shortname.
* record-full.h (record_full_is_used): Declare.
* record.c (find_record_target): Make extern.
(record_preopen): New function.
* record.h (RECORD_IS_USED): Delete macro.
(find_record_target, record_preopen): Declare functions.
2014-01-14 16:12:19 +00:00
|
|
|
|
2014-01-14 Pedro Alves <palves@redhat.com>
|
|
|
|
|
Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* infrun.c (use_displaced_stepping): Use find_record_target
|
|
|
|
|
instead of RECORD_IS_USED.
|
|
|
|
|
(adjust_pc_after_break): Use record_full_is_used instead of
|
|
|
|
|
RECORD_IS_USED.
|
|
|
|
|
* record-btrace.c (record_btrace_open): Call record_preopen
|
|
|
|
|
instead of checking RECORD_IS_USED.
|
|
|
|
|
* record-full.c (record_full_shortname)
|
|
|
|
|
(record_full_core_shortname): New globals.
|
|
|
|
|
(record_full_is_used): New function.
|
|
|
|
|
(find_full_open): Call record_preopen instead of checking
|
|
|
|
|
RECORD_IS_USED.
|
|
|
|
|
(init_record_full_ops): Set the target's shortname to
|
|
|
|
|
record_full_shortname.
|
|
|
|
|
(init_record_full_core_ops): Set the target's shortname to
|
|
|
|
|
record_full_core_shortname.
|
|
|
|
|
* record-full.h (record_full_is_used): Declare.
|
|
|
|
|
* record.c (find_record_target): Make extern.
|
|
|
|
|
(record_preopen): New function.
|
|
|
|
|
* record.h (RECORD_IS_USED): Delete macro.
|
|
|
|
|
(find_record_target, record_preopen): Declare functions.
|
|
|
|
|
|
2014-01-02 07:36:55 +00:00
|
|
|
|
2014-01-14 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbarch.sh (core_xfer_shared_libraries): Change its argument
|
|
|
|
|
'len''s type to ULONGEST.
|
|
|
|
|
(core_xfer_shared_libraries_aix): Likewise.
|
|
|
|
|
* gdbarch.c, gdbarch.h: Regenerated.
|
|
|
|
|
* i386-cygwin-tdep.c (windows_core_xfer_shared_libraries):
|
|
|
|
|
Change type of 'len' to ULONGEST.
|
|
|
|
|
* rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
|
|
|
|
|
(rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
|
|
|
|
|
|
2014-01-03 11:19:51 +00:00
|
|
|
|
2014-01-14 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* common/linux-osdata.c (linux_xfer_osdata_processes): Change
|
|
|
|
|
type of 'len' to ULONGEST.
|
|
|
|
|
(linux_xfer_osdata_processgroups): Likewise.
|
|
|
|
|
(linux_xfer_osdata_threads): Likewise.
|
|
|
|
|
(linux_xfer_osdata_fds): Likewise.
|
|
|
|
|
(linux_xfer_osdata_isockets): Likewise.
|
|
|
|
|
(linux_xfer_osdata_shm): Likewise.
|
|
|
|
|
(linux_xfer_osdata_sem): Likewise.
|
|
|
|
|
(linux_xfer_osdata_msg): Likewise.
|
|
|
|
|
(linux_common_xfer_osdata): Likewise.
|
|
|
|
|
(struct osdata_type) <getter>: Likewise.
|
|
|
|
|
* common/linux-osdata.h (linux_common_xfer_osdata): Update
|
|
|
|
|
the declaration.
|
|
|
|
|
|
2014-01-03 13:11:46 +00:00
|
|
|
|
2014-01-14 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* target.h (target_xfer_partial_ftype): Update.
|
|
|
|
|
(struct target_ops) <to_xfer_partial>: Change 'len' type to
|
|
|
|
|
ULONGEST.
|
|
|
|
|
* aix-thread.c (aix_thread_xfer_partial): Change type of
|
|
|
|
|
argument 'len' to ULONGEST.
|
|
|
|
|
* auxv.c (procfs_xfer_auxv): Likewise.
|
|
|
|
|
(ld_so_xfer_auxv): Likewise.
|
|
|
|
|
(memory_xfer_auxv): Likewise.
|
|
|
|
|
* bfd-target.c (target_bfd_xfer_partial): Likewise.
|
|
|
|
|
* bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
|
|
|
|
|
* bsd-uthread.c (bsd_uthread_xfer_partial): Likewise.
|
|
|
|
|
* corelow.c (core_xfer_partial): Likewise.
|
|
|
|
|
* ctf.c (ctf_xfer_partial): Likewise.
|
|
|
|
|
* darwin-nat.c (darwin_read_write_inferior): Likewise. Use
|
|
|
|
|
'%u'.
|
|
|
|
|
(darwin_read_dyld_info): Likewise.
|
|
|
|
|
(darwin_xfer_partial): Likewise.
|
|
|
|
|
* exec.c (section_table_xfer_memory_partial): Likewise.
|
|
|
|
|
(exec_xfer_partial): Likewise.
|
|
|
|
|
* exec.h (section_table_xfer_memory_partial): Update
|
|
|
|
|
declaration.
|
|
|
|
|
* gnu-nat.c (gnu_xfer_memory): Likewise. Call pulongest
|
|
|
|
|
instead of plongest.
|
|
|
|
|
(gnu_xfer_partial): Likewise.
|
|
|
|
|
* ia64-hpux-nat.c (ia64_hpux_xfer_memory): Likewise.
|
|
|
|
|
(ia64_hpux_xfer_solib_got): Likewise.
|
|
|
|
|
(ia64_hpux_xfer_partial): Likewise.
|
|
|
|
|
* ia64-linux-nat.c (ia64_linux_xfer_partial):
|
|
|
|
|
* inf-ptrace.c (inf_ptrace_xfer_partial):
|
|
|
|
|
* inf-ttrace.c (inf_ttrace_xfer_partial):
|
|
|
|
|
* linux-nat.c (linux_xfer_siginfo): Likewise.
|
|
|
|
|
(linux_nat_xfer_partial): Likewise.
|
|
|
|
|
(spu_enumerate_spu_ids, linux_proc_xfer_spu): Likewise.
|
|
|
|
|
(linux_nat_xfer_osdata, linux_xfer_partial): Likewise.
|
|
|
|
|
* monitor.c (monitor_xfer_memory): Likewise.
|
|
|
|
|
(monitor_xfer_partial): Likewise.
|
|
|
|
|
* procfs.c (procfs_xfer_partial): Likewise.
|
|
|
|
|
* record-full.c (record_full_xfer_partial): Likewise.
|
|
|
|
|
(record_full_core_xfer_partial): Likewise.
|
|
|
|
|
* remote-sim.c (gdbsim_xfer_memory): Likewise. Call pulongest
|
|
|
|
|
instead of plongest.
|
|
|
|
|
(gdbsim_xfer_partial): Likewise.
|
|
|
|
|
* remote.c (remote_xfer_partial): Likewise.
|
|
|
|
|
* rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
|
|
|
|
|
* rs6000-aix-tdep.h (rs6000_aix_ld_info_to_xml): Update
|
|
|
|
|
declaration.
|
|
|
|
|
* rs6000-nat.c (rs6000_xfer_partial): Likewise.
|
|
|
|
|
(rs6000_xfer_shared_libraries): Likewise.
|
|
|
|
|
* sol-thread.c (sol_thread_xfer_partial): Likewise.
|
|
|
|
|
* sparc-nat.c (sparc_xfer_wcookie): Likewise.
|
|
|
|
|
(sparc_xfer_partial): Likewise.
|
|
|
|
|
* spu-linux-nat.c (spu_proc_xfer_spu): Likewise.
|
|
|
|
|
(spu_xfer_partial): Likewise.
|
|
|
|
|
* spu-multiarch.c (spu_xfer_partial): Likewise.
|
|
|
|
|
* target.c (target_read_live_memory): Likewise.
|
|
|
|
|
(memory_xfer_live_readonly_partial): Likewise.
|
|
|
|
|
(memory_xfer_partial, memory_xfer_partial_1): Likewise.
|
|
|
|
|
(target_xfer_partial, default_xfer_partial): Likewise.
|
|
|
|
|
(current_xfer_partial): Likewise.
|
|
|
|
|
* tracepoint.c (tfile_xfer_partial): Likewise.
|
|
|
|
|
* windows-nat.c (windows_xfer_memory): Likewise. Call
|
|
|
|
|
pulongest instead of plongest.
|
|
|
|
|
(windows_xfer_partial): Likewise.
|
|
|
|
|
(windows_xfer_shared_libraries): Likewise.
|
|
|
|
|
|
2014-01-03 02:33:44 +00:00
|
|
|
|
2014-01-14 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* rs6000-nat.c (rs6000_xfer_shared_libraries): Use
|
|
|
|
|
target_xfer_partial_ftype.
|
|
|
|
|
|
2013-12-27 20:20:59 +00:00
|
|
|
|
2014-01-13 Siva Chandra Reddy <sivachandra@google.com>
|
|
|
|
|
|
|
|
|
|
PR python/15464
|
|
|
|
|
PR python/16113
|
|
|
|
|
* valops.c (value_struct_elt_bitpos): New function
|
|
|
|
|
* py-type.c (convert_field): Set 'name' attribute of a gdb.Field
|
|
|
|
|
object to 'None' if the field name is an empty string ("").
|
|
|
|
|
* python/py-value.c (valpy_getitem): Use 'bitpos' and 'type'
|
|
|
|
|
attribute to look for a field when 'name' is 'None'.
|
|
|
|
|
(get_field_type): New function
|
|
|
|
|
|
2014-01-14 01:15:42 +00:00
|
|
|
|
2014-01-13 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
PR symtab/16426
|
|
|
|
|
* dwarf2read.c (dwarf2_get_dwz_file): Call gdb_bfd_record_inclusion.
|
|
|
|
|
(try_open_dwop_file): Ditto.
|
|
|
|
|
* gdb_bfd.c: #include "vec.h".
|
|
|
|
|
(bfdp): New typedef.
|
|
|
|
|
(struct gdb_bfd_data): New member included_bfds.
|
|
|
|
|
(gdb_bfd_unref): Unref all included bfds.
|
|
|
|
|
(gdb_bfd_record_inclusion): New function.
|
|
|
|
|
* gdb_bfd.h (gdb_bfd_record_inclusion): Declare.
|
|
|
|
|
|
2013-12-30 02:35:02 +00:00
|
|
|
|
2014-01-13 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* gdbcore.h (deprecated_core_resize_section_table): Remove.
|
|
|
|
|
|
2013-12-28 22:11:36 +00:00
|
|
|
|
2014-01-13 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* defs.h (use_windows): Remove.
|
|
|
|
|
* gdb.c (main): Update.
|
|
|
|
|
* main.c (captured_main, gdb_main): Update.
|
|
|
|
|
* main.h (struct captured_main_args) <use_windows>: Remove.
|
|
|
|
|
* top.c (use_windows): Remove.
|
|
|
|
|
|
2013-12-28 21:43:25 +00:00
|
|
|
|
2014-01-13 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* defs.h (deprecated_flush_hook): Remove.
|
|
|
|
|
|
2014-01-13 20:19:18 +00:00
|
|
|
|
2014-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR threads/16216
|
|
|
|
|
* linux-thread-db.c (try_thread_db_load): Add parameter
|
|
|
|
|
check_auto_load_safe. Move here the file_is_auto_load_safe call.
|
|
|
|
|
(try_thread_db_load_from_pdir_1): Move it there from here.
|
|
|
|
|
(try_thread_db_load_from_sdir): Update caller.
|
|
|
|
|
(try_thread_db_load_from_dir): Move it there from here.
|
|
|
|
|
|
2014-01-10 03:55:50 +00:00
|
|
|
|
2014-01-13 Patrick Palka <patrick@parcs.ath.cx>
|
|
|
|
|
|
|
|
|
|
* regformats/regdat.sh: Always rewrite the register file.
|
|
|
|
|
|
2014-01-13 19:36:38 +00:00
|
|
|
|
2014-01-13 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (CHECK_HEADERS): New variable.
|
|
|
|
|
(check-headers:): New rule.
|
|
|
|
|
|
2013-12-28 21:56:18 +00:00
|
|
|
|
2014-01-13 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* cli/cli-setshow.c (do_set_command): Update.
|
|
|
|
|
* defs.h (deprecated_set_hook): Remove.
|
|
|
|
|
* top.c (deprecated_set_hook): Remove.
|
|
|
|
|
|
2014-01-13 14:56:29 +00:00
|
|
|
|
2014-01-13 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* tracepoint.c (tfile_fetch_registers): Don't infer the PC from
|
|
|
|
|
the tracepoint if the PC is a pseudo-register.
|
|
|
|
|
|
replace XCALLOC with XCNEWVEC or XCNEW
This removes XCALLOC and replaces it either with XCNEWVEC, or, if the
number of elements being requested was 1, with XCNEW.
2014-01-13 Tom Tromey <tromey@redhat.com>
* defs.h (XCALLOC): Remove.
* bcache.c (bcache_xmalloc): Use XCNEW, not XCALLOC.
(print_bcache_statistics): Use XCNEWVEC, not XCALLOC.
* dwarf2loc.c (allocate_piece_closure): Likewise.
* elfread.c (elf_symfile_segments): Likewise.
(elf_symfile_segments): Likewise.
* gdbtypes.c (copy_type_recursive): Likewise.
* i386-tdep.c (i386_gdbarch_init): Use XCNEW, not XCALLOC.
* jit.c (jit_frame_sniffer): Use XCNEWVEC, not XCALLOC.
* minsyms.c (prim_record_minimal_symbol_full): Use XCNEW, not
XCALLOC.
* mt-tdep.c (mt_gdbarch_init): Likewise.
* opencl-lang.c (allocate_lval_closure): Use XCNEWVEC, not
XCALLOC.
* psymtab.c (psymbol_compare): Use XCNEW, not XCALLOC.
* regcache.c (regcache_xmalloc_1): Use XCNEWVEC, not XCALLOC.
* registry.c (registry_alloc_data): Likewise.
* rs6000-tdep.c (rs6000_gdbarch_init): Use XCNEW, not XCALLOC.
* s390-linux-tdep.c (s390_gdbarch_init): Likewise.
* serial.c (serial_fdopen_ops): Likewise.
* solib-aix.c (solib_aix_get_section_offsets): Use XCNEWVEC, not
XCALLOC.
* spu-tdep.c (spu_gdbarch_init): Use XCNEW, not XCALLOC.
* symfile.c (default_symfile_segments): Use XCNEW and XCNEWVEC,
not XCALLOC.
2013-12-28 22:32:27 +00:00
|
|
|
|
2014-01-13 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* defs.h (XCALLOC): Remove.
|
|
|
|
|
* bcache.c (bcache_xmalloc): Use XCNEW, not XCALLOC.
|
|
|
|
|
(print_bcache_statistics): Use XCNEWVEC, not XCALLOC.
|
|
|
|
|
* dwarf2loc.c (allocate_piece_closure): Likewise.
|
|
|
|
|
* elfread.c (elf_symfile_segments): Likewise.
|
|
|
|
|
(elf_symfile_segments): Likewise.
|
|
|
|
|
* gdbtypes.c (copy_type_recursive): Likewise.
|
|
|
|
|
* i386-tdep.c (i386_gdbarch_init): Use XCNEW, not XCALLOC.
|
|
|
|
|
* jit.c (jit_frame_sniffer): Use XCNEWVEC, not XCALLOC.
|
|
|
|
|
* minsyms.c (prim_record_minimal_symbol_full): Use XCNEW, not
|
|
|
|
|
XCALLOC.
|
|
|
|
|
* mt-tdep.c (mt_gdbarch_init): Likewise.
|
|
|
|
|
* opencl-lang.c (allocate_lval_closure): Use XCNEWVEC, not
|
|
|
|
|
XCALLOC.
|
|
|
|
|
* psymtab.c (psymbol_compare): Use XCNEW, not XCALLOC.
|
|
|
|
|
* regcache.c (regcache_xmalloc_1): Use XCNEWVEC, not XCALLOC.
|
|
|
|
|
* registry.c (registry_alloc_data): Likewise.
|
|
|
|
|
* rs6000-tdep.c (rs6000_gdbarch_init): Use XCNEW, not XCALLOC.
|
|
|
|
|
* s390-linux-tdep.c (s390_gdbarch_init): Likewise.
|
|
|
|
|
* serial.c (serial_fdopen_ops): Likewise.
|
|
|
|
|
* solib-aix.c (solib_aix_get_section_offsets): Use XCNEWVEC, not
|
|
|
|
|
XCALLOC.
|
|
|
|
|
* spu-tdep.c (spu_gdbarch_init): Use XCNEW, not XCALLOC.
|
|
|
|
|
* symfile.c (default_symfile_segments): Use XCNEW and XCNEWVEC,
|
|
|
|
|
not XCALLOC.
|
|
|
|
|
|
2013-12-28 22:31:23 +00:00
|
|
|
|
2014-01-13 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* defs.h (XMALLOC): Remove.
|
|
|
|
|
* avr-tdep.c (avr_gdbarch_init): Use XNEW, not XMALLOC.
|
|
|
|
|
* bfin-tdep.c (bfin_gdbarch_init): Likewise.
|
|
|
|
|
* cli-out.c (struct ui_out *): Likewise.
|
|
|
|
|
* cli/cli-dump.c (add_dump_command): Likewise.
|
|
|
|
|
(add_dump_command): Likewise.
|
|
|
|
|
* complaints.c (get_complaints): Likewise.
|
|
|
|
|
(find_complaint): Likewise.
|
|
|
|
|
* dwarf2-frame.c (execute_cfa_program): Likewise.
|
|
|
|
|
* dwarf2read.c (abbrev_table_read_table): Likewise.
|
|
|
|
|
* gdbarch.sh: Likewise.
|
|
|
|
|
* gdbarch.c: Rebuild.
|
|
|
|
|
* inf-ttrace.c (inf_ttrace_add_page): Likewise.
|
|
|
|
|
* interps.c (interp_new): Likewise.
|
|
|
|
|
* lm32-tdep.c (lm32_gdbarch_init): Likewise.
|
|
|
|
|
* m32r-tdep.c (m32r_gdbarch_init): Likewise.
|
|
|
|
|
* mi/mi-console.c (mi_console_file_new): Likewise.
|
|
|
|
|
* mi/mi-interp.c (mi_interpreter_init): Likewise.
|
|
|
|
|
* mi/mi-out.c (mi_out_new): Likewise.
|
|
|
|
|
* mi/mi-parse.c (mi_parse): Likewise.
|
|
|
|
|
* microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
|
|
|
|
|
* moxie-tdep.c (moxie_gdbarch_init): Likewise.
|
|
|
|
|
* observer.c (xalloc_observer_list_node): Likewise.
|
|
|
|
|
* regcache.c (regcache_xmalloc_1): Likewise.
|
|
|
|
|
* reggroups.c (reggroup_new): Likewise.
|
|
|
|
|
(_initialize_reggroup): Likewise.
|
|
|
|
|
* registry.c (register_data_with_cleanup): Likewise.
|
|
|
|
|
* remote.c (remote_notif_stop_alloc_reply): Likewise.
|
|
|
|
|
* ser-base.c (serial_ttystate): Likewise.
|
|
|
|
|
* ser-mingw.c (make_pipe_state): Likewise.
|
|
|
|
|
* ser-pipe.c (pipe_open): Likewise.
|
|
|
|
|
* serial.c (serial_open): Likewise.
|
|
|
|
|
* sh64-tdep.c (sh64_gdbarch_init): Likewise.
|
|
|
|
|
* tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
|
|
|
|
|
(tui_alloc_win_info): Likewise.
|
|
|
|
|
(tui_add_content_elements): Likewise.
|
|
|
|
|
* tui/tui-file.c (tui_file_new): Likewise.
|
|
|
|
|
* tui/tui-out.c (tui_out_new): Likewise.
|
|
|
|
|
* ui-file.c (mem_file_new): Likewise.
|
|
|
|
|
* ui-out.c (push_level): Likewise.
|
|
|
|
|
(make_cleanup_ui_out_end): Likewise.
|
|
|
|
|
(append_header_to_list): Likewise.
|
|
|
|
|
(ui_out_new): Likewise.
|
|
|
|
|
* user-regs.c (user_reg_add_builtin): Likewise.
|
|
|
|
|
|
2013-12-28 22:31:01 +00:00
|
|
|
|
2014-01-13 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* defs.h (XZALLOC): Remove.
|
|
|
|
|
* ada-lang.c (get_ada_inferior_data): Use XCNEW, not XZALLOC.
|
|
|
|
|
* ada-tasks.c (get_ada_tasks_pspace_data): Likewise.
|
|
|
|
|
(get_ada_tasks_inferior_data): Likewise.
|
|
|
|
|
* auto-load.c (get_auto_load_pspace_data): Likewise.
|
|
|
|
|
* auxv.c (get_auxv_inferior_data): Likewise.
|
|
|
|
|
* bfd-target.c (target_bfd_reopen): Likewise.
|
|
|
|
|
* breakpoint.c (get_catch_syscall_inferior_data): Likewise.
|
|
|
|
|
(deprecated_insert_raw_breakpoint): Likewise.
|
|
|
|
|
* bsd-uthread.c (bsd_uthread_pid_to_str): Likewise.
|
|
|
|
|
* corelow.c (core_open): Likewise.
|
|
|
|
|
* darwin-nat.c (darwin_check_new_threads): Likewise.
|
|
|
|
|
(darwin_attach_pid): Likewise.
|
|
|
|
|
* dummy-frame.c (dummy_frame_push): Likewise.
|
|
|
|
|
* dwarf2-frame.c (dwarf2_frame_cache): Likewise.
|
|
|
|
|
* dwarf2loc.c (allocate_piece_closure): Likewise.
|
|
|
|
|
* elfread.c (elf_symfile_segments): Likewise.
|
|
|
|
|
* eval.c (ptrmath_type_p): Likewise.
|
|
|
|
|
* exceptions.c (EXCEPTIONS_SIGJMP_BUF): Likewise.
|
|
|
|
|
* gdbtypes.c (alloc_type_arch): Likewise.
|
|
|
|
|
(alloc_type_instance): Likewise.
|
|
|
|
|
* hppa-tdep.c (hppa_gdbarch_init): Likewise.
|
|
|
|
|
* inf-child.c (inf_child_can_use_agent): Likewise.
|
|
|
|
|
* inflow.c (get_inflow_inferior_data): Likewise.
|
|
|
|
|
* infrun.c (save_infcall_suspend_state): Likewise.
|
|
|
|
|
* jit.c (jit_reader_load): Likewise.
|
|
|
|
|
(get_jit_objfile_data): Likewise.
|
|
|
|
|
(get_jit_program_space_data): Likewise.
|
|
|
|
|
(jit_object_open_impl): Likewise.
|
|
|
|
|
(jit_symtab_open_impl): Likewise.
|
|
|
|
|
(jit_block_open_impl): Likewise.
|
|
|
|
|
(jit_frame_sniffer): Likewise.
|
|
|
|
|
* linux-fork.c (add_fork): Likewise.
|
|
|
|
|
* maint.c (make_command_stats_cleanup): Likewise.
|
|
|
|
|
* objfiles.c (get_objfile_pspace_data): Likewise.
|
|
|
|
|
* opencl-lang.c (struct lval_closure): Likewise.
|
|
|
|
|
* osdata.c (osdata_start_osdata): Likewise.
|
|
|
|
|
* progspace.c (new_address_space): Likewise.
|
|
|
|
|
(add_program_space): Likewise.
|
|
|
|
|
* remote-sim.c (get_sim_inferior_data): Likewise.
|
|
|
|
|
* sh-tdep.c (sh_gdbarch_init): Likewise.
|
|
|
|
|
* skip.c (Ignore): Likewise.
|
|
|
|
|
(skip_delete_command): Likewise.
|
|
|
|
|
* solib-aix.c (get_solib_aix_inferior_data): Likewise.
|
|
|
|
|
(library_list_start_library): Likewise.
|
|
|
|
|
(solib_aix_current_sos): Likewise.
|
|
|
|
|
* solib-darwin.c (get_darwin_info): Likewise.
|
|
|
|
|
(darwin_current_sos): Likewise.
|
|
|
|
|
* solib-dsbt.c (get_dsbt_info): Likewise.
|
|
|
|
|
* solib-ia64-hpux.c (new_so_list): Likewise.
|
|
|
|
|
(ia64_hpux_get_solib_linkage_addr): Likewise.
|
|
|
|
|
* solib-spu.c (append_ocl_sos): Likewise.
|
|
|
|
|
(spu_current_sos): Likewise.
|
|
|
|
|
* solib-svr4.c (get_svr4_info): Likewise.
|
|
|
|
|
(svr4_keep_data_in_core): Likewise.
|
|
|
|
|
(library_list_start_library): Likewise.
|
|
|
|
|
(svr4_default_sos): Likewise.
|
|
|
|
|
(svr4_read_so_list): Likewise.
|
|
|
|
|
* solib-target.c (library_list_start_library): Likewise.
|
|
|
|
|
(solib_target_current_sos): Likewise.
|
|
|
|
|
* sparc-tdep.c (sparc32_gdbarch_init): Likewise.
|
|
|
|
|
* symfile-debug.c (install_symfile_debug_logging): Likewise.
|
|
|
|
|
* symfile.c (default_symfile_segments): Likewise.
|
|
|
|
|
* target-descriptions.c (tdesc_data_init): Likewise.
|
|
|
|
|
(tdesc_create_reg): Likewise.
|
|
|
|
|
(struct tdesc_type *): Likewise.
|
|
|
|
|
(tdesc_create_vector): Likewise.
|
|
|
|
|
(tdesc_set_struct_size): Likewise.
|
|
|
|
|
(struct tdesc_type *): Likewise.
|
|
|
|
|
(tdesc_free_feature): Likewise.
|
|
|
|
|
(tdesc_create_feature): Likewise.
|
|
|
|
|
* windows-nat.c (windows_add_thread): Likewise.
|
|
|
|
|
(windows_make_so): Likewise.
|
|
|
|
|
* xml-support.c (gdb_xml_body_text): Likewise.
|
|
|
|
|
(gdb_xml_create_parser_and_cleanup): Likewise.
|
|
|
|
|
(xml_process_xincludes): Likewise.
|
|
|
|
|
* xml-syscall.c (allocate_syscalls_info): Likewise.
|
|
|
|
|
(syscall_create_syscall_desc): Likewise.
|
|
|
|
|
|
2014-01-12 03:32:26 +00:00
|
|
|
|
2014-01-12 Sergio Durigan Junior <sergiodj@redhat.com>
|
|
|
|
|
|
|
|
|
|
* i386-tdep.c (i386_stap_parse_special_token_triplet): New
|
|
|
|
|
function, with code from i386_stap_parse_special_token.
|
|
|
|
|
(i386_stap_parse_special_token_three_arg_disp): Likewise.
|
|
|
|
|
(i386_stap_parse_special_token): Move code to the two functions
|
|
|
|
|
above; simplify it.
|
|
|
|
|
|
Handle the case of a remote target supporting target side commands, but not on software breakpoints.
Although we can tell upfront whether a remote target supports target
side commands, we can only tell whether the target supports that in
combination with a given breakpoint kind (software, hardware,
watchpoints, etc.) when we go and try to insert such a breakpoint kind
the first time. It's not desirable to make remote_insert_breakpoint
simply return -1 in this case, because if the breakpoint was set in a
shared library, insert_bp_location will assume that the breakpoint
insertion failed because the library wasn't mapped in.
insert_bp_location already handles errors/exceptions thrown from the
target_insert_xxx methods, exactly so the backend can tell the user
the detailed reason the insertion of hw breakpoints failed. But, in
the case of software breakpoints, it discards the detailed error
message.
So the patch makes insert_bp_location use the error's message for SW
breakpoints too, and, introduces a NOT_SUPPORTED_ERROR error code so
that insert_bp_location doesn't confuse the error for failure due to a
shared library disappearing.
The result is:
(gdb) c
Warning:
Cannot insert breakpoint 2: Target doesn't support breakpoints that have target side commands.
2014-01-09 Pedro Alves <palves@redhat.com>
Hui Zhu <hui@codesourcery.com>
PR gdb/16101
* breakpoint.c (insert_bp_location): Rename hw_bp_err_string to
bp_err_string. Don't mark the location shlib_disabled if the
error thrown wasn't a generic or memory error. Catch errors
thrown while inserting breakpoints in overlayed code. Output
error message of software breakpoints.
* remote.c (remote_insert_breakpoint): If this breakpoint has
target-side commands but this stub doesn't support Z0 packets,
throw NOT_SUPPORTED_ERROR error.
* exceptions.h (enum errors) <NOT_SUPPORTED_ERROR>: New error.
* target.h (target_insert_breakpoint): Extend comment.
(target_insert_hw_breakpoint): Add comment.
2014-01-09 18:33:45 +00:00
|
|
|
|
2014-01-09 Pedro Alves <palves@redhat.com>
|
|
|
|
|
Hui Zhu <hui@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
PR gdb/16101
|
|
|
|
|
* breakpoint.c (insert_bp_location): Rename hw_bp_err_string to
|
|
|
|
|
bp_err_string. Don't mark the location shlib_disabled if the
|
|
|
|
|
error thrown wasn't a generic or memory error. Catch errors
|
|
|
|
|
thrown while inserting breakpoints in overlayed code. Output
|
|
|
|
|
error message of software breakpoints.
|
|
|
|
|
* remote.c (remote_insert_breakpoint): If this breakpoint has
|
|
|
|
|
target-side commands but this stub doesn't support Z0 packets,
|
|
|
|
|
throw NOT_SUPPORTED_ERROR error.
|
|
|
|
|
* exceptions.h (enum errors) <NOT_SUPPORTED_ERROR>: New error.
|
|
|
|
|
* target.h (target_insert_breakpoint): Extend comment.
|
|
|
|
|
(target_insert_hw_breakpoint): Add comment.
|
|
|
|
|
|
[remote/gdbserver] Don't lose signals when reconnecting.
Currently, when GDB connects in all-stop mode, GDBserver always
responds to the status packet with a GDB_SIGNAL_TRAP, even if the
program is actually stopped for some other signal.
(gdb) tar rem ...
...
(gdb) c
Program received signal SIGUSR1, User defined signal 1.
(gdb) disconnect
(gdb) tar rem ...
(gdb) c
(Or a GDB crash instead of an explicit disconnect.)
This results in the program losing that signal on that last continue,
because gdb will tell the target to resume with no signal (to suppress
the GDB_SIGNAL_TRAP, due to 'handle SISGTRAP nopass'), and that will
actually suppress the real signal the program had stopped for
(SIGUSR1). To fix that, I think we should make GDBserver report the
real signal the thread had stopped for in response to the status
packet:
@item ?
@cindex @samp{?} packet
Indicate the reason the target halted. The reply is the same as for
step and continue.
But, that raises the question -- which thread are we reporting the
status for? Due to how the RSP in all-stop works, we can only report
one status. The status packet's response is a stop reply packet, so
it includes the thread identifier, so it's not a problem packet-wise.
However, GDBserver is currently always reporting the status for first
thread in the thread list, even though that may well not be the thread
that got the signal that caused the program to stop. So the next
logical step would be to report the status for the
last_ptid/last_status thread (the last event reported to gdb), if it's
still around; and if not, fallback to some other thread.
There's an issue on the GDB side with that, though...
GDB currently always adds the thread reported in response to the
status query as the first thread in its list. That means that if we
start with e.g.,
(gdb) info threads
3 Thread 1003 ...
* 2 Thread 1002 ...
1 Thread 1001 ...
And reconnect:
(gdb) disconnect
(gdb) tar rem ...
We end up with:
(gdb) info threads
3 Thread 1003 ...
2 Thread 1001 ...
* 1 Thread 1002 ...
Not a real big issue, but it's reasonably fixable, by having GDB
fetch/sync the thread list before fetching the status/'?', and then
using the status to select the right thread as current on the GDB
side. Holes in the thread numbers are squashed before/after
reconnection (e.g., 2,3,5 becomes 1,2,3), but the order is preserved,
which I think is both good, and good enough.
However (yes, there's more...), the previous GDB that was connected
might have had gdbserver running in non-stop mode, or could have left
gdbserver doing disconnected tracing (which also forces non-stop), and
if the new gdb/connection is in all-stop mode, we can end up with more
than one thread with a signal to report back to gdb. As we can only
report one thread/status (in the all-stop RSP variant; the non-stop
variant doesn't have this issue), we get to do what we do at every
other place we have this situation -- leave events we can't report
right now as pending, so that the next resume picks them up.
Note all this ammounts to a QoI change, within the existing framework.
There's really no RSP change here.
The only user visible change (other than that the signal is program is
stopped at isn't lost / is passed to the program), is in "info
program", that now can show the signal the program stopped for. Of
course, the next resume will respect the pass/nopass setting for the
signal in question. It'd be reasonable to have the initial connection
tell the user the program was stopped with a signal, similar to when
we load a core to debug, but I'm leaving that out for a future change.
I think we'll need to either change how handle_inferior_event & co
handle stop_soon, or maybe bypass them completely (like
fork-child.c:startup_inferior) for that.
Tested on x86_64 Fedora 17.
gdb/gdbserver/
2014-01-08 Pedro Alves <palves@redhat.com>
* gdbthread.h (struct thread_info) <status_pending_p>: New field.
* server.c (visit_actioned_threads, handle_pending_status): New
function.
(handle_v_cont): Factor out parts to ...
(resume): ... this new function. If in all-stop, and a thread
being resumed has a pending status, report it without actually
resuming.
(myresume): Adjust to use the new 'resume' function.
(clear_pending_status_callback, set_pending_status_callback)
(find_status_pending_thread_callback): New functions.
(handle_status): Handle the case of multiple threads having
interesting statuses to report. Report threads' real last signal
instead of always reporting GDB_SIGNAL_TRAP. Look for a thread
with an interesting thread to report the status for, instead of
always reporting the status of the first thread.
gdb/
2014-01-08 Pedro Alves <palves@redhat.com>
* remote.c (remote_add_thread): Add threads silently if starting
up.
(remote_notice_new_inferior): If in all-stop, and starting up,
don't call notice_new_inferior.
(get_current_thread): New function, factored out from ...
(add_current_inferior_and_thread): ... this. Adjust.
(remote_start_remote) <all-stop>: Fetch the thread list. If we
found any thread, then select the remote's current thread as GDB's
current thread too.
gdb/testsuite/
2014-01-08 Pedro Alves <palves@redhat.com>
* gdb.threads/reconnect-signal.c: New file.
* gdb.threads/reconnect-signal.exp: New file.
2014-01-08 18:55:51 +00:00
|
|
|
|
2014-01-08 Pedro Alves <palves@redhat.com>
|
|
|
|
|
|
|
|
|
|
* remote.c (remote_add_thread): Add threads silently if starting
|
|
|
|
|
up.
|
|
|
|
|
(remote_notice_new_inferior): If in all-stop, and starting up,
|
|
|
|
|
don't call notice_new_inferior.
|
|
|
|
|
(get_current_thread): New function, factored out from ...
|
|
|
|
|
(add_current_inferior_and_thread): ... this. Adjust.
|
|
|
|
|
(remote_start_remote) <all-stop>: Fetch the thread list. If we
|
|
|
|
|
found any thread, then select the remote's current thread as GDB's
|
|
|
|
|
current thread too.
|
|
|
|
|
|
2014-01-08 09:41:03 +00:00
|
|
|
|
2014-01-08 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* NEWS: Create a new section for the next release branch.
|
|
|
|
|
Rename the section of the current branch, now that it has
|
|
|
|
|
been cut.
|
|
|
|
|
|
2014-01-08 09:25:28 +00:00
|
|
|
|
2014-01-08 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
GDB 7.7 branch created (79301218fa0f074c5656db0ec8972a5ddcf91fb5):
|
|
|
|
|
* version.in: Bump version to 7.7.50.DATE-cvs.
|
|
|
|
|
|
2014-01-07 10:12:21 +00:00
|
|
|
|
2014-01-08 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* spu-linux-nat.c (spu_symbol_file_add_from_memory): Change
|
|
|
|
|
type of 'id' to gdb_byte. Cast 'id' to 'const char *'.
|
|
|
|
|
(spu_xfer_partial): Cast 'buf' to 'const char *'.
|
|
|
|
|
|
2014-01-07 09:48:07 +00:00
|
|
|
|
2014-01-08 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* spu-linux-nat.c (spu_symbol_file_add_from_memory): Pass
|
|
|
|
|
return value of bfd_get_filename to symbol_file_add_from_bfd.
|
|
|
|
|
|
2014-01-07 23:31:50 +00:00
|
|
|
|
2014-01-08 Pierre Muller <muller@sourceware.org>
|
|
|
|
|
|
|
|
|
|
Fix PR16201.
|
|
|
|
|
* coff-pe-read.c (struct read_pe_section_data): Add index field.
|
|
|
|
|
(add_pe_exported_sym): Use SECTION_DATA->INDEX for call
|
|
|
|
|
to prim_record_mininal_symbol_and_info.
|
|
|
|
|
(add_pe_forwarded_sym): Use known section number of forwarded symbol
|
|
|
|
|
in call to prim_record_minimal_symbol_and_info.
|
|
|
|
|
(read_pe_exported_syms): Set index field of section_data.
|
|
|
|
|
|
2013-12-18 19:03:07 +00:00
|
|
|
|
2014-01-07 Andrew Pinski <apinski@cavium.com>
|
|
|
|
|
|
|
|
|
|
* features/aarch64-core.xml (cpsr): Change to be 64bit.
|
|
|
|
|
* features/aarch64.c: Regenerate.
|
|
|
|
|
|
2014-01-07 20:28:53 +00:00
|
|
|
|
2014-01-07 Andreas Schwab <schwab@linux-m68k.org>
|
|
|
|
|
|
|
|
|
|
* target.c (return_null): Define.
|
|
|
|
|
(update_current_target): Use it instead of return_zero for
|
|
|
|
|
functions that return a pointer.
|
|
|
|
|
|
2014-01-07 19:03:06 +00:00
|
|
|
|
2014-01-07 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
|
|
|
|
|
|
|
|
|
|
* source.c (add_path): Fix check for duplicated paths in the previously
|
|
|
|
|
included paths.
|
|
|
|
|
|
2014-01-07 03:25:10 +00:00
|
|
|
|
2014-01-07 Honggyu Kim <hong.gyu.kim@lge.com>
|
|
|
|
|
|
|
|
|
|
* ada-lang.c: Remove duplicated include statements.
|
|
|
|
|
* alphabsd-nat.c: Ditto.
|
|
|
|
|
* amd64-darwin-tdep.c: Ditto.
|
|
|
|
|
* amd64fbsd-nat.c: Ditto.
|
|
|
|
|
* auto-load.c: Ditto.
|
|
|
|
|
* ax-gdb.c: Ditto.
|
|
|
|
|
* breakpoint.c: Ditto.
|
|
|
|
|
* dbxread.c: Ditto.
|
|
|
|
|
* fork-child.c: Ditto.
|
|
|
|
|
* gdb_usleep.c: Ditto.
|
|
|
|
|
* i386-darwin-tdep.c: Ditto.
|
|
|
|
|
* i386fbsd-nat.c: Ditto.
|
|
|
|
|
* infcmd.c: Ditto.
|
|
|
|
|
* inferior.c: Ditto.
|
|
|
|
|
* jv-lang.c: Ditto.
|
|
|
|
|
* linux-nat.c: Ditto.
|
|
|
|
|
* linux-tdep.c: Ditto.
|
|
|
|
|
* m68kbsd-nat.c: Ditto.
|
|
|
|
|
* m68klinux-nat.c: Ditto.
|
|
|
|
|
* microblaze-tdep.c: Ditto.
|
|
|
|
|
* mips-linux-tdep.c: Ditto.
|
|
|
|
|
* mn10300-tdep.c: Ditto.
|
|
|
|
|
* nto-tdep.c: Ditto.
|
|
|
|
|
* opencl-lang.c: Ditto.
|
|
|
|
|
* osdata.c: Ditto.
|
|
|
|
|
* printcmd.c: Ditto.
|
|
|
|
|
* regcache.c: Ditto.
|
|
|
|
|
* remote-m32r-sdi.c: Ditto.
|
|
|
|
|
* remote.c: Ditto.
|
|
|
|
|
* symfile.c: Ditto.
|
|
|
|
|
* symtab.c: Ditto.
|
|
|
|
|
* tilegx-linux-nat.c: Ditto.
|
|
|
|
|
* tilegx-tdep.c: Ditto.
|
|
|
|
|
* tracepoint.c: Ditto.
|
|
|
|
|
* valops.c: Ditto.
|
|
|
|
|
* vaxbsd-nat.c: Ditto.
|
|
|
|
|
* windows-nat.c: Ditto.
|
|
|
|
|
* xtensa-tdep.c: Ditto.
|
|
|
|
|
|
2014-01-07 09:28:48 +00:00
|
|
|
|
2014-01-07 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* spu-linux-nat.c (_initialize_spu_nat): Declare.
|
|
|
|
|
|
2014-01-08 09:16:32 +00:00
|
|
|
|
2014-01-07 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* aix-thread.c (pdc_read_regs): Cast parameter to uintptr_t.
|
|
|
|
|
(pdc_write_regs): Likewise.
|
|
|
|
|
(fetch_regs_kernel_thread): Likewise.
|
|
|
|
|
(store_regs_kernel_thread): Likewise.
|
|
|
|
|
|
|
|
|
|
2014-01-07 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* ada-varobj.c (ada_varobj_adjust_for_child_access): Convert
|
|
|
|
|
tagged type objects to their actual type.
|
|
|
|
|
|
Ada: Fix missing call to pretty-printer for fields of records.
Consider the following types:
type Time_T is record
Secs : Integer;
end record;
Before : Time_T := (Secs => 1384395743);
In this example, we assume that type Time_T is the number of seconds
since Epoch, and so added a Python pretty-printer, to print this
type in a more human-friendly way. For instance:
(gdb) print before
$1 = Thu Nov 14 02:22:23 2013 (1384395743)
However, we've noticed that things stop working when this type is
embedded inside another record, and we try to print that record.
For instance, with the following declarations:
type Composite is record
Id : Integer;
T : Time_T;
end record;
Afternoon : Composite := (Id => 1, T => (Secs => 1384395865));
(gdb) print afternoon
$2 = (id => 1, t => (secs => 1384395865))
We expected instead:
(gdb) print afternoon
$2 = (id => 1, t => Thu Nov 14 02:24:25 2013 (1384395865))
This patch fixes the problem by making sure that we try to print
each field via a call to val_print, rather than calling ada_val_print
directly. We need to go through val_print, as the val_print
handles all language-independent features such as calling the
pretty-printer, knowing that ada_val_print will get called eventually
if actual Ada-specific printing is required (which should be the
most common scenario).
And because val_print takes the language as parameter, we enhanced
the print_field_values and print_variant_part to also take a language.
As a bonus, this allows us to remove a couple of references to
current_language.
gdb/ChangeLog:
* ada-valprint.c (print_field_values): Add "language" parameter.
Update calls to print_field_values and print_variant_part.
Pass new parameter "language" in call to val_print instead
of "current_language". Replace call to ada_val_print by call
to val_print.
(print_variant_part): Add "language" parameter.
(ada_val_print_struct_union): Update call to print_field_values.
gdb/testsuite/ChangeLog:
* gdb.ada/pp-rec-component.exp, gdb.ada/pp-rec-component.py,
gdb.ada/pp-rec-component/foo.adb, gdb.ada/pp-rec-component/pck.adb,
gdb.ada/pp-rec-component/pck.ads: New files.
2013-12-19 17:26:55 +00:00
|
|
|
|
2014-01-07 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* ada-valprint.c (print_field_values): Add "language" parameter.
|
|
|
|
|
Update calls to print_field_values and print_variant_part.
|
|
|
|
|
Pass new parameter "language" in call to val_print instead
|
|
|
|
|
of "current_language". Replace call to ada_val_print by call
|
|
|
|
|
to val_print.
|
|
|
|
|
(print_variant_part): Add "language" parameter.
|
|
|
|
|
(ada_val_print_struct_union): Update call to print_field_values.
|
|
|
|
|
|
2013-12-19 16:19:45 +00:00
|
|
|
|
2014-01-07 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* ada-valprint.c (ui_memcpy): Delete.
|
|
|
|
|
(ada_print_floating): Update documentation. Add empty line
|
|
|
|
|
between between function documentation and implementation.
|
|
|
|
|
Delete variable "buffer". Use ui_file_xstrdup in place of
|
|
|
|
|
ui_file_put. Minor adjustments following this change.
|
|
|
|
|
|
2013-12-19 16:06:46 +00:00
|
|
|
|
2014-01-07 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* ada-valprint.c (ada_val_print_string): New function,
|
|
|
|
|
extracted from ada_val_print_array.
|
|
|
|
|
(ada_val_print_array): Replace extracted code by call
|
|
|
|
|
to ada_val_print_string followed by a return. Move
|
|
|
|
|
"else" branch to the function's top block.
|
|
|
|
|
|
2013-12-19 15:43:57 +00:00
|
|
|
|
2014-01-07 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* ada-valprint.c (ada_val_print_array): Move implementation
|
|
|
|
|
down. Rename parameter "offset" and "val" into "offset_aligned"
|
|
|
|
|
and "original_value" respectively. Add parameter "offset".
|
|
|
|
|
|
2013-12-19 15:26:27 +00:00
|
|
|
|
2014-01-07 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* ada-valprint.c (ada_val_print_ref): Rewrite by mostly
|
|
|
|
|
re-organizing the code. Change the "???" message printed
|
|
|
|
|
when target type is a TYPE_CODE_UNDEF into
|
|
|
|
|
"<ref to undefined type>".
|
|
|
|
|
|
2013-12-19 15:11:49 +00:00
|
|
|
|
2014-01-07 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* ada-valprint.c (print_record): Delete, implementation inlined...
|
|
|
|
|
(ada_val_print_struct_union): ... here. Remove call to
|
|
|
|
|
ada_check_typedef in inlined implementation.
|
|
|
|
|
|
2013-12-19 12:30:43 +00:00
|
|
|
|
2014-01-07 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* ada-valprint.c (ada_val_print_gnat_array): New function,
|
|
|
|
|
extracted from ada_val_print_1;
|
|
|
|
|
(ada_val_print_ptr, ada_val_print_num, ada_val_print_enum)
|
|
|
|
|
(ada_val_print_flt, ada_val_print_struct_union)
|
|
|
|
|
(ada_val_print_ref): Likewise.
|
|
|
|
|
(ada_val_print_1): Delete variables i and elttype.
|
|
|
|
|
Replace extracted-out code by call to corresponding
|
|
|
|
|
new functions.
|
|
|
|
|
|
2013-12-19 11:48:39 +00:00
|
|
|
|
2014-01-07 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* ada-valprint.c (ada_val_print_1): Remove call to gdb_flush.
|
|
|
|
|
|
2013-12-19 11:27:00 +00:00
|
|
|
|
2014-01-07 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* ada-valprint.c (ada_val_print_1): Replace calls to
|
|
|
|
|
ada_val_print_1 by calls to val_print.
|
|
|
|
|
|
2013-12-19 10:33:20 +00:00
|
|
|
|
2014-01-07 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* ada-valprint.c (ada_val_print_1): Add parameter "language".
|
|
|
|
|
Update calls to self accordingly. Replace calls to c_val_print
|
|
|
|
|
by calls to val_print.
|
|
|
|
|
|
2013-12-19 10:05:16 +00:00
|
|
|
|
2014-01-07 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* ada-valprint.c (print_record): Delete declaration.
|
|
|
|
|
(adjust_type_signedness, ada_val_print_1): Likewise.
|
|
|
|
|
(ada_val_print): Move function implementation down.
|
|
|
|
|
(print_variant_part, print_field_values, print_record):
|
|
|
|
|
Move function implementation up.
|
|
|
|
|
|
2013-12-23 03:18:51 +00:00
|
|
|
|
2014-01-07 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* python/py-type.c (typy_get_name): New function.
|
|
|
|
|
(type_object_getset): Add entry for attribute "name".
|
|
|
|
|
* NEWS: Add entry mentioning this new attribute.
|
|
|
|
|
|
2014-01-05 11:32:51 +00:00
|
|
|
|
2014-01-07 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gnu-nat.c (set_exceptions_cmd): Remove an empty body 'if'
|
|
|
|
|
statement.
|
|
|
|
|
|
2014-01-05 11:36:51 +00:00
|
|
|
|
2014-01-07 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gnu-nat.c (info_port_rights): Add qualifier const to
|
|
|
|
|
argument args.
|
|
|
|
|
|
2014-01-05 11:37:53 +00:00
|
|
|
|
2014-01-07 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gnu-nat.c (trace_me): Use 'void' for empty argument list.
|
|
|
|
|
|
2014-01-05 11:36:03 +00:00
|
|
|
|
2014-01-07 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gnu-nat.c (make_inf) Update declaration.
|
|
|
|
|
(make_inf): Make it static.
|
|
|
|
|
(inf_set_traced): Likewise.
|
|
|
|
|
(inf_port_to_thread, inf_task_died_status): Likewise.
|
|
|
|
|
|
2014-01-05 07:38:44 +00:00
|
|
|
|
2014-01-07 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gnu-nat.c (inf_tid_to_proc): Remove declaration.
|
|
|
|
|
|
2014-01-05 07:05:44 +00:00
|
|
|
|
2014-01-07 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gnu-nat.c (_initialize_gnu_nat): Declare.
|
|
|
|
|
|
2014-01-02 03:02:56 +00:00
|
|
|
|
2014-01-07 Yao Qi <yao@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdbarch.sh (byte_order, byte_order_for_code): Change type to
|
|
|
|
|
'enum bfd_endian'.
|
|
|
|
|
(struct gdbarch_info) <byte_order>: Change type to
|
|
|
|
|
'enum bfd_endian'.
|
|
|
|
|
<byte_order_for_code>: Likewise.
|
|
|
|
|
* gdbarch.c, gdbarch.h: Regenerated.
|
|
|
|
|
|
2014-01-06 21:57:59 +00:00
|
|
|
|
2014-01-06 Sasha Smundak <asmundak@google.com>
|
|
|
|
|
|
|
|
|
|
* jit.c: (jit_reader_load_command): Fix JIT reader path creation.
|
|
|
|
|
|
2013-12-29 09:39:28 +00:00
|
|
|
|
2014-01-06 Tom Tromey <tromey@redhat.com>
|
|
|
|
|
|
|
|
|
|
* doublest.c (convert_doublest_to_floatformat): Use const, not
|
|
|
|
|
CONST.
|
|
|
|
|
* somread.c (som_symtab_read): Likewise.
|
|
|
|
|
|
2014-01-06 16:24:41 +00:00
|
|
|
|
2014-01-07 Hui Zhu <hui@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* gdb_bfd.c (gdb_bfd_stash_filename): Removed.
|
|
|
|
|
(gdb_bfd_open): Removed gdb_bfd_stash_filename.
|
|
|
|
|
(gdb_bfd_fopen): Ditto.
|
|
|
|
|
(gdb_bfd_openr): Ditto.
|
|
|
|
|
(gdb_bfd_openw): Ditto.
|
|
|
|
|
(gdb_bfd_openr_iovec): Ditto.
|
|
|
|
|
(gdb_bfd_fdopenr): Ditto.
|
|
|
|
|
* gdb_bfd.h (gdb_bfd_stash_filename): Removed.
|
|
|
|
|
* solib-aix.c (solib_aix_bfd_open): Alloc object_bfd->filename
|
|
|
|
|
with xstrdup.
|
|
|
|
|
* solib-darwin.c (darwin_bfd_open): Alloc res->filename
|
|
|
|
|
with xstrdup.
|
|
|
|
|
* symfile-mem.c (symbol_file_add_from_memory): Removed
|
|
|
|
|
gdb_bfd_stash_filename.
|
|
|
|
|
|
2014-01-03 22:34:45 +00:00
|
|
|
|
2014-01-03 Doug Evans <dje@google.com>
|
|
|
|
|
|
|
|
|
|
* nat/linux-waitpid.c (linux_debug): Remove extraneous \n from
|
|
|
|
|
output.
|
|
|
|
|
|
2014-01-01 03:57:03 +00:00
|
|
|
|
2014-01-01 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
Update year range in copyright notice of all files.
|
|
|
|
|
|
2014-01-01 03:39:44 +00:00
|
|
|
|
2014-01-01 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* top.c (print_gdb_version): Set copyright year to 2014.
|
|
|
|
|
|
2014-01-01 03:34:22 +00:00
|
|
|
|
2014-01-01 Joel Brobecker <brobecker@adacore.com>
|
|
|
|
|
|
|
|
|
|
* config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2013.
|
|
|
|
|
|
2014-01-01 03:31:51 +00:00
|
|
|
|
For older changes see ChangeLog-2013.
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
|
|
Local Variables:
|
|
|
|
|
mode: change-log
|
|
|
|
|
left-margin: 8
|
|
|
|
|
fill-column: 74
|
|
|
|
|
version-control: never
|
2007-08-09 22:44:38 +00:00
|
|
|
|
coding: utf-8
|
1999-04-16 01:35:26 +00:00
|
|
|
|
End:
|