deliverable/binutils-gdb.git
15 years ago * infrun.c (adjust_pc_after_break): Do nothing if executing in
Pedro Alves [Sat, 18 Oct 2008 03:24:34 +0000 (03:24 +0000)] 
* infrun.c (adjust_pc_after_break): Do nothing if executing in
reverse.

15 years agoLine break
Michael Snyder [Sat, 18 Oct 2008 01:12:49 +0000 (01:12 +0000)] 
Line break

15 years agodaily update
Alan Modra [Sat, 18 Oct 2008 00:00:04 +0000 (00:00 +0000)] 
daily update

15 years ago*** empty log message ***
gdbadmin [Sat, 18 Oct 2008 00:00:02 +0000 (00:00 +0000)] 
*** empty log message ***

15 years ago * infcmd.c (GO_USAGE): Delete.
Pedro Alves [Fri, 17 Oct 2008 23:39:32 +0000 (23:39 +0000)] 
* infcmd.c (GO_USAGE): Delete.
(go_command): Adjust.

15 years ago2008-10-17 Michael Snyder <msnyder@vmware.com>
Michael Snyder [Fri, 17 Oct 2008 19:44:17 +0000 (19:44 +0000)] 
2008-10-17  Michael Snyder  <msnyder@vmware.com>

* gdb.texinfo: Add documentation for reverse execution.

15 years ago2008-10-17 Michael Snyder <msnyder@vmware.com>
Michael Snyder [Fri, 17 Oct 2008 19:43:47 +0000 (19:43 +0000)] 
2008-10-17  Michael Snyder  <msnyder@vmware.com>
Target interface for reverse debugging.
* target.h (enum target_waitkind):
Add new wait event, TARGET_WAITKIND_NO_HISTORY.
(struct target_ops): New method to_can_execute_reverse.
(target_can_execute_reverse): New macro.
* target.c (update_current_target): Inherit to_can_execute_reverse.

Remote interface for reverse debugging.
* remote.c (remote_can_execute_reverse): New target method.
(remote_resume): Check for reverse exec direction, and send
appropriate command to target.
(remote_wait_as): Check target response for NO_HISTORY status.
Also check for empty reply (target doesn't understand "bs" or "bc).
(remote_vcont_resume): Jump out if attempting reverse execution.

Event handling interface for reverse debugging.
* infrun.c (execution_direction): New state variable.
(enum inferior_stop_reason): Add NO_HISTORY reason.
(handle_inferior_event): Handle TARGET_WAITKIND_NO_HISTORY.
Handle stepping over a function call in reverse.
Handle stepping thru a line range in reverse.
Handle setting a step-resume breakpoint in reverse.
Handle stepping into a function in reverse.
Handle stepping between line ranges in reverse.
(print_stop_reason): Print reason for NO_HISTORY.
(step_into_function): Rename to handle_step_into_function.
(handle_step_into_function_backward): New function.
(set_exec_direction_func, show_exec_direction_func): New funcs.
(proceed): No need to singlestep over a breakpoint
when resuming in reverse.

* inferior.h (enum exec_direction_kind): New enum.
(execution_direction): Export new execution state variable.

* breakpoint.c (make_breakpoint_silent): New function.
* breakpoint.h (make_breakpoint_silent): Export.
* infcmd.c (finish_command): Check for reverse exec direction.
(finish_backward): New function, handle finish cmd in reverse.

User interface for reverse execution.
* Makefile.in (reverse.c): New file.
* reverse.c: New file.  User interface for reverse execution.

15 years ago * remote.c (record_currthread): Add inferior before child threads.
Pedro Alves [Fri, 17 Oct 2008 01:08:08 +0000 (01:08 +0000)] 
* remote.c (record_currthread): Add inferior before child threads.
(remote_threads_info): Check for exited threads.  Mention
notification order.

15 years ago*** empty log message ***
gdbadmin [Fri, 17 Oct 2008 00:00:34 +0000 (00:00 +0000)] 
*** empty log message ***

15 years agodaily update
Alan Modra [Fri, 17 Oct 2008 00:00:04 +0000 (00:00 +0000)] 
daily update

15 years agoMention Eli in the changelog entry for Python values.
Thiago Jung Bauermann [Thu, 16 Oct 2008 17:59:36 +0000 (17:59 +0000)] 
Mention Eli in the changelog entry for Python values.

15 years ago * gdb.base/foll-fork.exp: Adjust the expected output to match
Joel Brobecker [Thu, 16 Oct 2008 16:25:37 +0000 (16:25 +0000)] 
    * gdb.base/foll-fork.exp: Adjust the expected output to match
        the new description for fork/vfork catchpoints in the "info
        breakpoints" output.

15 years ago * breakpoint.h (enum bptype): New enum bp_catchpoint.
Joel Brobecker [Thu, 16 Oct 2008 16:25:04 +0000 (16:25 +0000)] 
    * breakpoint.h (enum bptype): New enum bp_catchpoint.
        Delete bp_catch_fork and bp_catch_vfork.
        (struct breakpoint_ops): Add new methods "insert", "remove"
        and "breakpoint_hit".
        * breakpoint.c (create_fork_vfork_event_catchpoint)
        (create_fork_event_catchpoint, create_vfork_event_catchpoint): Remove.
        (insert_catchpoint): Remove handling of bp_catch_fork and
        bp_catch_vfork catchpoints, and handle them as bp_catchpoint
        catchpoints instead.
        (insert_bp_location, update_breakpoints_after_exec)
        (remove_breakpoint, bpstat_check_location, bpstat_what)
        (allocate_bp_location): Likewise.
        (print_it_typical, print_one_breakpoint_location, mention): Remove
        handling of bp_catch_fork and bp_catch_vfork breakpoints.
        (ep_is_catchpoint, user_settable_breakpoint)
        (breakpoint_address_is_meaningful, adjust_breakpoint_address)
        (breakpoint_re_set_one, disable_command, enable_command):
        Remove use of bp_catch_fork and bp_catch_vfork.  Add handling of
        bp_catchpoint breakpoints.
        (insert_catch_fork, remove_catch_fork, breakpoint_hit_catch_fork)
        (print_it_catch_fork, print_one_catch_fork, print_mention_catch_fork):
        New functions.
        (catch_fork_breakpoint_ops): New static constant.
        (insert_catch_vfork, remove_catch_vfork, breakpoint_hit_catch_vfork)
        (print_it_catch_vfork, print_one_catch_vfork)
        (print_mention_catch_vfork): New functions.
        (catch_vfork_breakpoint_ops): New static constant.
        (create_catchpoint, create_fork_vfork_event_catchpoint): New functions.
        (catch_fork_command_1): Use create_fork_vfork_event_catchpoint
        to create the fork and vfork catchpoints.
        (gnu_v3_exception_catchpoint_ops): Set new breakpoint_ops fields.
        * ada-lang.c (catch_exception_breakpoint_ops): Set new breakpoint_ops
        fields.
        (catch_exception_unhandled_breakpoint_ops): Likewise.
        (catch_assert_breakpoint_ops): Likewise.

15 years ago2008-10-16 Paul Pluzhnikov <ppluzhnikov@google.com>
Thiago Jung Bauermann [Thu, 16 Oct 2008 15:08:28 +0000 (15:08 +0000)] 
2008-10-16  Paul Pluzhnikov  <ppluzhnikov@google.com>

* Makefile.in: Add gdb.python to ALL_SUBDIRS.

15 years agoAdd gdb/python/python-value.c, which I forgot to do in my previous commit.
Thiago Jung Bauermann [Thu, 16 Oct 2008 14:46:20 +0000 (14:46 +0000)] 
Add gdb/python/python-value.c, which I forgot to do in my previous commit.

15 years ago * remote.c (set_general_process): New.
Pedro Alves [Thu, 16 Oct 2008 14:39:54 +0000 (14:39 +0000)] 
* remote.c (set_general_process): New.
(remote_check_symbols): Use it.

15 years ago * remote.c (push_remote_target): Delete.
Pedro Alves [Thu, 16 Oct 2008 14:03:18 +0000 (14:03 +0000)] 
* remote.c (push_remote_target): Delete.
* target.h (push_remote_target): Delete declaration.

15 years ago2008-10-16 Thiago Jung Bauermann <bauerman@br.ibm.com>
Thiago Jung Bauermann [Thu, 16 Oct 2008 03:54:00 +0000 (03:54 +0000)] 
2008-10-16  Thiago Jung Bauermann  <bauerman@br.ibm.com>
    Tom Tromey  <tromey@redhat.com>

gdb/
* Makefile.in (SUBDIR_PYTHON_OBS): Add python-value.o.
(SUBDIR_PYTHON_SRCS): Add python-value.c.
(python-value.o): New target.
* configure.ac (CONFIG_OBS): Add python-value.o.
(CONFIG_SRCS): Add python/python-value.c
* configure: Regenerate.
* python-internal.h (value_object_type): Add external declaration.
(gdbpy_get_value_from_history, value_to_value_object,
convert_value_from_python, gdbpy_initialize_values): Add function
prototype.
* python/python-value.c: New file.
* python/python.c (GdbMethods): Add gdbpy_get_value_from_history.
(_initialize_python): Call gdbpy_initialize_values.
* python/python.h (values_in_python): Add external declaration.
* value.c (value_prepend_to_list, value_remove_from_list): New
functions.
(preserve_values): Iterate over values_in_python list as well.
* value.h (value_prepend_to_list, value_remove_from_list): Add
function prototypes.

gdb/doc/
* gdb.texinfo. (Values From Inferior): New subsubsection.

gdb/testsuite/
* gdb.python/python-value.c: New file.
* gdb.python/python-value.exp: New file.

15 years agomerge from gcc
DJ Delorie [Thu, 16 Oct 2008 02:47:08 +0000 (02:47 +0000)] 
merge from gcc

15 years agodaily update
Alan Modra [Thu, 16 Oct 2008 00:00:04 +0000 (00:00 +0000)] 
daily update

15 years ago*** empty log message ***
gdbadmin [Thu, 16 Oct 2008 00:00:03 +0000 (00:00 +0000)] 
*** empty log message ***

15 years ago * remote.c (remote_close): Unregister remote_desc from the event
Pedro Alves [Wed, 15 Oct 2008 21:39:53 +0000 (21:39 +0000)] 
* remote.c (remote_close): Unregister remote_desc from the event
loop.  Always restore the SIGINT handler.  Discard all inferiors
here.
(remote_detach_1, remote_disconnect): Don't unregister the file
descriptor from the event loop here.
(interrupt_query, readchar, getpkt_sane): Pop the target instead
of morning the current inferior.
(remote_kill): Don't unregister the file descriptor from the event
loop here.
(remote_mourn_1): Don't discard inferiors here.

15 years agogdb/
Pedro Alves [Wed, 15 Oct 2008 19:15:34 +0000 (19:15 +0000)] 
gdb/
* breakpoint.c (breakpoint_init_inferior): Clean up the moribund
locations list.
(moribund_breakpoint_here_p): Record the moribund
location in the moribund_locations vector.
* breakpoint.h (moribund_breakpoint_here_p): Declare.
(displaced_step_fixup): Check if the breakpoint the thread was
trying to step over has been removed since having been placed in
the displaced stepping queue.
(adjust_pc_after_break): In non-stop mode, check for a moribund
breakpoint at the stop pc.
(handle_inferior_event): Don't retire moribund breakpoints on
TARGET_WAITKIND_IGNORE.

gdb/testsuite/
* gdb.mi/mi-nsmoribund.exp, gdb.mi/nsmoribund.c: New test.

15 years agoTypo
Denis Pilat [Wed, 15 Oct 2008 13:06:54 +0000 (13:06 +0000)] 
Typo

15 years agotypo.
Denis Pilat [Wed, 15 Oct 2008 07:55:24 +0000 (07:55 +0000)] 
typo.

15 years agodaily update
Alan Modra [Wed, 15 Oct 2008 00:00:04 +0000 (00:00 +0000)] 
daily update

15 years ago*** empty log message ***
gdbadmin [Wed, 15 Oct 2008 00:00:03 +0000 (00:00 +0000)] 
*** empty log message ***

15 years ago * infrun.c (displaced_step_prepare): Switch thread temporarily
Pedro Alves [Tue, 14 Oct 2008 23:39:29 +0000 (23:39 +0000)] 
* infrun.c (displaced_step_prepare): Switch thread temporarily
while we're here.
(displaced_step_fixup): Make sure target_resume sees ptid as
inferior_ptid.  Add debug output.

15 years ago Remove dead code.
Pedro Alves [Tue, 14 Oct 2008 20:49:02 +0000 (20:49 +0000)] 
Remove dead code.

* breakpoint.c (show_breakpoint_hit_counts): Delete.
(print_one_breakpoint_location): Adjust.
(breakpoint_clear_ignore_counts): Delete.
* breakpoint.h (breakpoint_clear_ignore_counts): Remove
declaration.
* target.c (generic_mourn_inferior): Don't clear ignore
counts (never reached).

15 years ago*** empty log message ***
gdbadmin [Tue, 14 Oct 2008 00:00:33 +0000 (00:00 +0000)] 
*** empty log message ***

15 years agodaily update
Alan Modra [Tue, 14 Oct 2008 00:00:04 +0000 (00:00 +0000)] 
daily update

15 years agodaily update
Alan Modra [Mon, 13 Oct 2008 00:00:08 +0000 (00:00 +0000)] 
daily update

15 years ago*** empty log message ***
gdbadmin [Mon, 13 Oct 2008 00:00:03 +0000 (00:00 +0000)] 
*** empty log message ***

15 years agogas/
H.J. Lu [Sun, 12 Oct 2008 12:37:09 +0000 (12:37 +0000)] 
gas/

2008-10-12  H.J. Lu  <hongjiu.lu@intel.com>

* config/tc-i386.c (processor_type): Moved to tc-i386.h.
(cpu_arch_tune): Make it global.
(cpu_arch_isa): Likewise.
(cpu_arch_isa_flags): Likewise.
(i386_align_code): Check fragP->tc_frag_data.isa,
fragP->tc_frag_data.isa_flags and cpu_arch_tune instead of
cpu_arch_isa, cpu_arch_isa_flags and cpu_arch_tune,
respectively.

* config/tc-i386.h (processor_type): Moved from tc-i386.c.
(cpu_arch_tune): New.
(cpu_arch_isa): Likewise.
(cpu_arch_isa_flags): Likewise.
(i386_tc_frag_data): Likewise.
(TC_FRAG_TYPE): Likewise.
(TC_FRAG_INIT): Likewise.

gas/testsuite/

2008-10-12  H.J. Lu  <hongjiu.lu@intel.com>

* gas/i386/i386.exp: Run nops-5, nops-5-i686, x86-64-nops-5 and
x86-64-nops-5-k8.

* gas/i386/nops-5.d: New.
* gas/i386/nops-5.s: Likewise.
* gas/i386/nops-5-i686.d: Likewise.
* gas/i386/x86-64-nops-5.d: Likewise.
* gas/i386/x86-64-nops-5-k8.d: Likewise.

15 years agodaily update
Alan Modra [Sun, 12 Oct 2008 00:00:05 +0000 (00:00 +0000)] 
daily update

15 years ago*** empty log message ***
gdbadmin [Sun, 12 Oct 2008 00:00:03 +0000 (00:00 +0000)] 
*** empty log message ***

15 years agodaily update
Alan Modra [Sat, 11 Oct 2008 00:00:10 +0000 (00:00 +0000)] 
daily update

15 years ago*** empty log message ***
gdbadmin [Sat, 11 Oct 2008 00:00:03 +0000 (00:00 +0000)] 
*** empty log message ***

15 years agoinclude/elf/
Nathan Froyd [Fri, 10 Oct 2008 20:55:36 +0000 (20:55 +0000)] 
include/elf/
* ppc.h: Add Tag_GNU_Power_ABI_Struct_Return.
bfd/
* elf32-ppc.c (ppc_elf_merge_obj_attributes): Merge
Tag_GNU_Power_ABI_Struct_Return.
binutils/
* readelf.c (display_power_gnu_attribute): Decode
Tag_GNU_Power_ABI_Struct_Return.
ld/testsuite/
* ld-powerpc/gnu-attr-12-1.s: New file.
* ld-powerpc/gnu-attr-12-2.s: New file.
* ld-powerpc/gnu-attr-12-11.d: New file.
* ld-powerpc/gnu-attr-12-21.d: New file.
* ld-powerpc/powerpc.exp: Run new dump tests.

15 years ago * dwarf2read.c (comp_unit_head): Use unsigned int consistently
Doug Evans [Fri, 10 Oct 2008 16:15:42 +0000 (16:15 +0000)] 
* dwarf2read.c (comp_unit_head): Use unsigned int consistently
for dwarf section offsets and sizes.
(dwarf2_cu): Ditto.
(dwarf2_per_cu_data): Ditto.
(create_all_comp_units): Change offset to unsigned int.
(load_full_comp_unit,find_partial_die_in_comp_unit,find_partial_die,
dwarf2_find_containing_comp_unit,dwarf2_find_comp_unit): Ditto.

* dwarf2read.c (read_initial_length): Delete cu_header arg.
All callers updated.
(read_checked_initial_length_and_offset): New function.
(read_offset_1): New function.
(read_offset): Call it.
(dwarf_decode_line_header): Call read_checked_initial_length_and_offset
instead of read_initial_length.  Call read_offset_1 instead of
read_offset.

* dwarf2read.c (dwarf2_get_ref_die_offset): Remove unused arg `cu'.
All callers updated.

* dwarf2read.c (dwarf_attr_name): Unconditionally support all
DW_AT_MIPS_* except DW_AT_MIPS_fde which collides with
DW_AT_HP_block_index.

15 years ago * remote.c (remote_start_remote): Always tell the stub if we're in
Pedro Alves [Fri, 10 Oct 2008 14:46:31 +0000 (14:46 +0000)] 
* remote.c (remote_start_remote): Always tell the stub if we're in
extended-remote.

15 years ago * server.c (handle_v_run): If GDB didn't specify an argv, use the
Pedro Alves [Fri, 10 Oct 2008 14:06:05 +0000 (14:06 +0000)] 
* server.c (handle_v_run): If GDB didn't specify an argv, use the
whole argv from the last run, not just argv[0].

15 years ago PR 6937
Nick Clifton [Fri, 10 Oct 2008 11:35:36 +0000 (11:35 +0000)] 
        PR 6937
            * configure.in (SHARED_LIBADD): Add libiberty.a.
            (SHARED_DEPENDENCIES): Add libiberty.a.

15 years agodaily update
Alan Modra [Fri, 10 Oct 2008 00:00:05 +0000 (00:00 +0000)] 
daily update

15 years ago*** empty log message ***
gdbadmin [Fri, 10 Oct 2008 00:00:02 +0000 (00:00 +0000)] 
*** empty log message ***

15 years ago * remote.c (remote_wait): Rename to...
Pedro Alves [Thu, 9 Oct 2008 18:45:44 +0000 (18:45 +0000)] 
* remote.c (remote_wait): Rename to...
(remote_wait_as): ... this.  Don't loop here.  If the remote
didn't stop, return TARGET_WAITKIND_IGNORE.
(remote_wait): New, reimplemented on top of remote_wait_as.

15 years ago * doc/as.texinfo (Pseudo Ops): Swap order of Comm and CFI menu entries.
Bob Wilson [Thu, 9 Oct 2008 18:12:29 +0000 (18:12 +0000)] 
* doc/as.texinfo (Pseudo Ops): Swap order of Comm and CFI menu entries.
(Altmacro, Comm, Loc, Loc_mark_labels, List, MRI, PopSection, Sleb128):
Moved into alphabetical order.

15 years ago * doc/as.texinfo (Dot): Expand no-space-dir conditional to include
Bob Wilson [Thu, 9 Oct 2008 18:10:44 +0000 (18:10 +0000)] 
* doc/as.texinfo (Dot): Expand no-space-dir conditional to include
a complete sentence.
(Pseudo Ops): Put conditionals around Skip and Space menu entries.
(Line): Remove conditional declaration of Ln node and section here.
Put aout-bout description inside the no-line-dir conditional.
(Skip, Space): Use a separate conditional for each node.

15 years ago * doc/as.texinfo (Pseudo Ops): Remove no-file-dir conditional around
Bob Wilson [Thu, 9 Oct 2008 18:08:10 +0000 (18:08 +0000)] 
* doc/as.texinfo (Pseudo Ops): Remove no-file-dir conditional around
menu entry for File; remove version-specific .file operands from menu
description.  Replace "LNS directives" menu entry with new entries
for "Loc" and "Loc_mark_labels".
(LNS directives): Split into separate nodes for each directive.
(Loc): New node for .loc directive.  Mention that this directive
is for DWARF2 and add a missing article.
(Loc_mark_labels): Likewise for .loc_mark_labels.
(File): Change this node to describe both the default version and
the DWARF2 version of .file.  Move the no-file-dir conditional to
include only the default version.

15 years ago * dw2gencfi.c (cfi_finish): Deal with md_fix_up_eh_frame.
Eric Botcazou [Thu, 9 Oct 2008 17:31:43 +0000 (17:31 +0000)] 
* dw2gencfi.c (cfi_finish): Deal with md_fix_up_eh_frame.
* config/tc-i386.h (md_fix_up_eh_frame): Define on Solaris.
(i386_solaris_fix_up_eh_frame): Declare.
* config/tc-i386.c (i386_solaris_fix_up_eh_frame): New function.

15 years ago * gdb.base/macscp.exp: Use 'vafunc' and 'fixedarg' rather than
Tom Tromey [Thu, 9 Oct 2008 16:49:47 +0000 (16:49 +0000)] 
* gdb.base/macscp.exp: Use 'vafunc' and 'fixedarg' rather than
'fprintf' and 'stderr'.

15 years ago2008-10-09 Thomas Schwinge <tschwinge@gnu.org>
Thomas Schwinge [Thu, 9 Oct 2008 16:06:22 +0000 (16:06 +0000)] 
2008-10-09  Thomas Schwinge  <tschwinge@gnu.org>

* Makefile.in (gnu-nat.o): Revert the 2008-09-10 change, as the problem
is fixed upstream.

15 years ago2008-10-09 Thomas Schwinge <tschwinge@gnu.org>
Thomas Schwinge [Thu, 9 Oct 2008 16:04:18 +0000 (16:04 +0000)] 
2008-10-09  Thomas Schwinge  <tschwinge@gnu.org>

* reply_mig_hack.awk: Use the `BAD_TYPECHECK' macro.

15 years ago2008-10-09 Thomas Schwinge <tschwinge@gnu.org>
Thomas Schwinge [Thu, 9 Oct 2008 15:53:26 +0000 (15:53 +0000)] 
2008-10-09  Thomas Schwinge  <tschwinge@gnu.org>

* MAINTAINERS (Write After Approval): Add myself.

15 years ago PR 6944
Nick Clifton [Thu, 9 Oct 2008 15:12:56 +0000 (15:12 +0000)] 
    PR 6944
        * doc/as.texinfo (Dollar Local Labels): Correct description of
        dollar local labels to show that the colon suffix is still
        needed.

15 years ago2008-10-09 Pedro Alves <pedro@codesourcery.com>
Pedro Alves [Thu, 9 Oct 2008 13:49:13 +0000 (13:49 +0000)] 
2008-10-09  Pedro Alves  <pedro@codesourcery.com>

Make it compile without warnings.

* procfs.c (create_procinfo): Initialize `parent'.
(dead_procinfo): Pass a constant string as format to error.
(procfs_address_to_host_pointer): Add cast to gdb_type *.
(procfs_find_LDT_entry): Adjust format string to long int
ptid.tid.
(procfs_xfer_partial): Adjust prototype.  Add gdb_byte* cast.
(procfs_xfer_memory): Adjust prototype.
(info_mappings_callback, info_proc_mappings): Adjust to not pass a
variable as printf_filtered format.
(procfs_make_note_section): Change type of auxv local to gdb_byte.
* Makefile.in: Remove special rule.

15 years ago * embedspu.sh: Pass -Wa,-noexecstack to $CC.
Alan Modra [Thu, 9 Oct 2008 13:42:30 +0000 (13:42 +0000)] 
* embedspu.sh: Pass -Wa,-noexecstack to $CC.

15 years agobinutils/
Kai Tietz [Thu, 9 Oct 2008 09:00:08 +0000 (09:00 +0000)] 
binutils/
2008-10-09  Kai Tietz  <kai.tietz@onevision.com>

* dlltool.c (PAGE_SIZE): Make sure it has bfd_vma type.
(PAGE_MASK): Likewise.
(sfunc): Change to address size of bfd_vma for base-file.
(flush_page): Likewise.
(gen_exp_file): Likewise.
bfd/
2008-10-09  Kai Tietz  <kai.tietz@onevision.com>

* cofflink.c (_bfd_coff_generic_relocate_section): Dump bfd_vma sized addresses instead of long sized.

15 years ago * remote.c (remote_open_1): Move acknowledging any pending ack,
Pedro Alves [Thu, 9 Oct 2008 03:24:51 +0000 (03:24 +0000)] 
* remote.c (remote_open_1): Move acknowledging any pending ack,
querying supported features, activating noack mode, finding the
target description, enabling extended remote, and checking remote
symbols from here ...
(remote_start_remote): ... to here.
(remote_open_1): Don't pop the target if it is already gone.
* target.c (unpush_target): Check for the dummy target.

15 years ago * ser-mingw.c: Include "command.h".
Pedro Alves [Thu, 9 Oct 2008 01:14:26 +0000 (01:14 +0000)] 
* ser-mingw.c: Include "command.h".
(pipe_windows_open): Declare locals at the beginning of the scope.

15 years ago * elf64-ppc.c (ppc64_elf_get_synthetic_symtab): Don't attempt to
Alan Modra [Thu, 9 Oct 2008 00:55:52 +0000 (00:55 +0000)] 
* elf64-ppc.c (ppc64_elf_get_synthetic_symtab): Don't attempt to
read plt relocs if no dynamic syms.

15 years agodaily update
Alan Modra [Thu, 9 Oct 2008 00:14:24 +0000 (00:14 +0000)] 
daily update

15 years ago*** empty log message ***
gdbadmin [Thu, 9 Oct 2008 00:00:34 +0000 (00:00 +0000)] 
*** empty log message ***

15 years ago * remote.c (struct remote_state) <waiting_for_stop_reply>: New
Pedro Alves [Wed, 8 Oct 2008 19:16:31 +0000 (19:16 +0000)] 
* remote.c (struct remote_state) <waiting_for_stop_reply>: New
field.
(remote_open_1): Clear waiting_for_stop_reply.
(remote_resume): Set waiting_for_stop_reply.
(remote_wait): Clear or set waiting_for_stop_reply accordingly.
(putpkt_binary): If we're in async mode and waiting for a stop
reply, bail out with an error.
(extended_remote_mourn_1): Clear waiting_for_stop_reply.

15 years agomerge from gcc
DJ Delorie [Wed, 8 Oct 2008 17:55:27 +0000 (17:55 +0000)] 
merge from gcc

15 years ago * xstrdup.c: Include <sys/types.h> after "config.h".
David Edelsohn [Wed, 8 Oct 2008 16:53:29 +0000 (16:53 +0000)] 
    * xstrdup.c: Include <sys/types.h> after "config.h".

15 years ago * configure.in (ALL_LINGUAS): Add "id".
Nick Clifton [Wed, 8 Oct 2008 15:58:26 +0000 (15:58 +0000)] 
    * configure.in (ALL_LINGUAS): Add "id".
        * configure: Regenerate.
        * po/id.po: New Indonesian translation.

15 years ago * remote.c (remote_get_thread_info): If the remote doesn't support
Pedro Alves [Wed, 8 Oct 2008 15:00:29 +0000 (15:00 +0000)] 
* remote.c (remote_get_thread_info): If the remote doesn't support
the query, bail out.

15 years ago Convert static_kind into loc_kind enum.
Jan Kratochvil [Wed, 8 Oct 2008 12:49:13 +0000 (12:49 +0000)] 
Convert static_kind into loc_kind enum.
* gdbtypes.h (enum field_loc_kind): New.
(union field_location): New field dwarf_block.
(struct field): Rename static_kind as loc_kind.
(FIELD_STATIC_KIND): Rename to ...
(FIELD_LOC_KIND): ... here.
(TYPE_FIELD_STATIC_KIND): Rename to ...
(TYPE_FIELD_LOC_KIND): ... here and use there now new FIELD_LOC_KIND.
(TYPE_FIELD_STATIC_HAS_ADDR): Remove.
(TYPE_FIELD_STATIC): Remove.
(TYPE_FIELD_BITPOS): Reformat.
(SET_FIELD_BITPOS): New.
(FIELD_PHYSADDR): Rename to ...
(FIELD_STATIC_PHYSADDR): ... here.
(TYPE_FIELD_STATIC_PHYSADDR): Follow the FIELD_PHYSADDR rename.
(SET_FIELD_PHYSADDR): Use new FIELD_LOC_KIND.
(FIELD_PHYSNAME): Rename to ...
(FIELD_STATIC_PHYSNAME): ... here.
(TYPE_FIELD_STATIC_PHYSNAME): Follow the FIELD_PHYSNAME rename.
(SET_FIELD_PHYSNAME): Use new FIELD_LOC_KIND.
(FIELD_DWARF_BLOCK, TYPE_FIELD_DWARF_BLOCK, SET_FIELD_DWARF_BLOCK): New.
(field_is_static): New declaration.
* gdbtypes.c (field_is_static): New function.
(copy_type_recursive): Update throughout.
* amd64-tdep.c, c-typeprint.c, coffread.c, cp-valprint.c, dwarf2read.c,
eval.c, jv-typeprint.c, jv-valprint.c, mdebugread.c, p-typeprint.c,
p-valprint.c, valops.c, value.c, varobj.c: Update throughout.

15 years ago * elf.c (assign_file_positions_for_load_sections): When checking
Alan Modra [Wed, 8 Oct 2008 08:30:27 +0000 (08:30 +0000)] 
* elf.c (assign_file_positions_for_load_sections): When checking
a segment for contents, don't assume that a non-TLS nobits section
must only be followed by nobits sections.

15 years ago*** empty log message ***
gdbadmin [Wed, 8 Oct 2008 00:00:33 +0000 (00:00 +0000)] 
*** empty log message ***

15 years ago * options.c (General_options::finalize): Add check for -static and
Cary Coutant [Tue, 7 Oct 2008 23:40:21 +0000 (23:40 +0000)] 
* options.c (General_options::finalize): Add check for -static and
-shared.
* gold.cc (queue_middle_tasks): Assert that list of dynamic objects
is not empty.

15 years ago * gnu-nat.h: Rename `current_inferior' to `gnu_current_inf' to
Pedro Alves [Tue, 7 Oct 2008 18:42:42 +0000 (18:42 +0000)] 
* gnu-nat.h: Rename `current_inferior' to `gnu_current_inf' to
avoid a name collision.
* gnu-nat.c: Likewise.
* i386gnu-nat.c: Likewise.

15 years ago2008-10-07 Jan Kratochvil <jan.kratochvil@redhat.com>
H.J. Lu [Tue, 7 Oct 2008 16:44:52 +0000 (16:44 +0000)] 
2008-10-07  Jan Kratochvil  <jan.kratochvil@redhat.com>

* configure.ac: Call AC_SYS_LARGEFILE.
* config.in: Regenerated.
* configure: Likewise.

15 years ago2008-10-07 H.J. Lu <hongjiu.lu@intel.com>
H.J. Lu [Tue, 7 Oct 2008 14:21:59 +0000 (14:21 +0000)] 
2008-10-07  H.J. Lu  <hongjiu.lu@intel.com>

* read.c (pseudo_set): Don't allow global register symbol only
if TC_GLOBAL_REGISTER_SYMBOL_OK is undefined.
* symbols.c (S_SET_EXTERNAL): Likewise.

* config/tc-mmix.h (TC_GLOBAL_REGISTER_SYMBOL_OK): Defined.

* doc/internals.texi: Document TC_GLOBAL_REGISTER_SYMBOL_OK.

15 years ago * gdb.ada/ref_tick_size.exp: New testcase.
Joel Brobecker [Tue, 7 Oct 2008 14:10:31 +0000 (14:10 +0000)] 
    * gdb.ada/ref_tick_size.exp: New testcase.

15 years ago * ada-lang.c (ada_evaluate_subexp) [OP_ATR_SIZE]: Add handling
Joel Brobecker [Tue, 7 Oct 2008 14:07:10 +0000 (14:07 +0000)] 
    * ada-lang.c (ada_evaluate_subexp) [OP_ATR_SIZE]: Add handling
        of arguments that are references.

15 years ago * readelf.c (process_section_headers): Do not cut the section names and
Nick Clifton [Tue, 7 Oct 2008 12:03:18 +0000 (12:03 +0000)] 
    * readelf.c (process_section_headers): Do not cut the section names and
        types if running with --wide.

        * ld-ia64/tlsbin.rd: Update expected output now that --wide does
        not truncate section names.
        * ld-ia64/tlspic.rd: Likewise.

15 years agomerge from gcc
DJ Delorie [Tue, 7 Oct 2008 01:28:01 +0000 (01:28 +0000)] 
merge from gcc

15 years ago*** empty log message ***
gdbadmin [Tue, 7 Oct 2008 00:00:03 +0000 (00:00 +0000)] 
*** empty log message ***

15 years agodaily update
Alan Modra [Mon, 6 Oct 2008 23:07:36 +0000 (23:07 +0000)] 
daily update

15 years ago * dwarf2read.c (dwarf2_die_debug): New static global.
Doug Evans [Mon, 6 Oct 2008 22:23:18 +0000 (22:23 +0000)] 
* dwarf2read.c (dwarf2_die_debug): New static global.
(dump_die_shallow): Renamed from dump_die, New args f, indent.
Print to specified file, indented by the specified amount.
(dump_die_for_error): New fn.  Point all existing callers of
dump_die here.
(dump_die_die_1,dump_die): New fns, replaces ...
(dump_die_list): ... deleted.
(read_die_and_children_1): Old contents of read_die_and_children
moved here.
(read_die_and_children): Rewrite.
(read_die_and_siblings): Call read_die_and_children_1 instead of
read_die_and_children.
(_initialize_dwarf2_read): New option "debug dwarf2-die".
* gdbinit.in (pdie): New macro.

* doc/gdb.texinfo (set debug dwarf2-die): Document it.

15 years ago * dwarf2read.c (offset_in_cu_p): New function.
Doug Evans [Mon, 6 Oct 2008 21:54:24 +0000 (21:54 +0000)] 
* dwarf2read.c (offset_in_cu_p): New function.
(find_partial_die,follow_die_ref): Use it.

* gdb.dwarf2/dw2-cu-size.exp: New file.
* gdb.dwarf2/dw2-cu-size.S: New file.

* gdb.dwarf2/dw2-intercu.S (.Ltype_int_in_cu2): Renamed from
.Ltype_int for clarity.

15 years ago * symmisc.c (maintenance_info_symtabs): Watch for ^c.
Doug Evans [Mon, 6 Oct 2008 21:07:48 +0000 (21:07 +0000)] 
* symmisc.c (maintenance_info_symtabs): Watch for ^c.
(maintenance_info_psymtabs): Ditto.

15 years ago * doc/as.texinfo (Local): New description of ELF .local directive.
Bob Wilson [Mon, 6 Oct 2008 17:31:39 +0000 (17:31 +0000)] 
* doc/as.texinfo (Local): New description of ELF .local directive.

15 years ago * dwarf.c (display_debug_frames): Change text for uniformity.
Nick Clifton [Mon, 6 Oct 2008 16:27:35 +0000 (16:27 +0000)] 
        * dwarf.c (display_debug_frames): Change text for uniformity.
            (process_debug_info): Likewise.
            (display_debug_aranges): Likewise.  Indent address output.
            (display_debug_pubnames): Print offset in hex.

            * binutils-all/objdump.W: Update.

            * gas/cfi/cfi-alpha-1.d, gas/cfi/cfi-alpha-3.d,
            gas/cfi/cfi-arm-1.d, gas/cfi/cfi-common-1.d,
            gas/cfi/cfi-common-2.d, gas/cfi/cfi-common-3.d,
            gas/cfi/cfi-common-4.d, gas/cfi/cfi-common-5.d,
            gas/cfi/cfi-common-6.d, gas/cfi/cfi-hppa-1.d,
            gas/cfi/cfi-i386-2.d, gas/cfi/cfi-i386.d, gas/cfi/cfi-m68k.d,
            gas/cfi/cfi-mips-1.d, gas/cfi/cfi-ppc-1.d, gas/cfi/cfi-s390-1.d,
            gas/cfi/cfi-s390x-1.d, gas/cfi/cfi-sh-1.d, gas/cfi/cfi-sparc-1.d,
            gas/cfi/cfi-sparc64-1.d, gas/cfi/cfi-x86_64.d: Update for readelf
            change.

            * ld-elf/eh1.d, ld-elf/eh2.d, ld-elf/eh3.d, ld-elf/eh4.d,
            ld-elf/eh5.d, ld-elf/eh6.d, ld-mips-elf/eh-frame1-n32.d,
            ld-mips-elf/eh-frame1-n64.d, ld-mips-elf/eh-frame2-n32.d,
            ld-mips-elf/eh-frame2-n64.d, ld-mips-elf/eh-frame3.d,
            ld-mips-elf/eh-frame4.d: Update for readelf change.

15 years ago PR 6926
Nick Clifton [Mon, 6 Oct 2008 08:17:47 +0000 (08:17 +0000)] 
    PR 6926
        * read.c (get_line_sb): Renamed to get_non_macro_line_sb.
        (_find_end_of_line): Add extra parameter indicating if the line is
        inside a macro.  If it is then do not allow the @ character to be
        treated as a line separator character.
        (read_a_source): Update use of _find_end_of_line.
        (find_end_of_line): Likewise.
        (s_irp): Update use of get_line_sb.
        (s_macro): Likewise.
        (do_repeat): Likewise.
        (get_line_sb): New function.  Like the old version of get_line_sb
        except that it takes an extra parameter indicating whether the
        line is inside a macro.
        (get_macro_line_sb): New function.

15 years ago*** empty log message ***
gdbadmin [Mon, 6 Oct 2008 00:00:33 +0000 (00:00 +0000)] 
*** empty log message ***

15 years agodaily update
Alan Modra [Sun, 5 Oct 2008 23:00:05 +0000 (23:00 +0000)] 
daily update

15 years agoFix email address
Michael Snyder [Sun, 5 Oct 2008 20:01:14 +0000 (20:01 +0000)] 
Fix email address

15 years ago2008-10-05 Michael Snyder <msnyder@promb-2s-dhcp59.eng.vmware.com>
Michael Snyder [Sun, 5 Oct 2008 19:52:11 +0000 (19:52 +0000)] 
2008-10-05  Michael Snyder  <msnyder@promb-2s-dhcp59.eng.vmware.com>

* infrun.c (handle_inferior_event): Fix typo in comment.

15 years ago PR 6943
Alan Modra [Sun, 5 Oct 2008 04:12:04 +0000 (04:12 +0000)] 
PR 6943
* scripttempl/avr.sc (.bss): Set lma when relocating.
(.bss, .noinit): No need to set vma when relocating.
(.text, .bss, ,noinit): Set vma to zero when not relocating.

15 years ago*** empty log message ***
gdbadmin [Sun, 5 Oct 2008 00:00:03 +0000 (00:00 +0000)] 
*** empty log message ***

15 years agodaily update
Alan Modra [Sat, 4 Oct 2008 23:00:04 +0000 (23:00 +0000)] 
daily update

15 years ago * gas/cris/rd-tls-1.s, gas/cris/rd-tls-1.d, gas/cris/rd-tls-2.s,
Hans-Peter Nilsson [Sat, 4 Oct 2008 17:23:44 +0000 (17:23 +0000)] 
* gas/cris/rd-tls-1.s, gas/cris/rd-tls-1.d, gas/cris/rd-tls-2.s,
gas/cris/rd-tls-2.d, gas/cris/tls-err-1.s, gas/cris/tls-err-2.s,
gas/cris/tls-err-3.s: New tests.

15 years ago * config/tc-cris.c: Update all comments regarding explicit relocations
Hans-Peter Nilsson [Sat, 4 Oct 2008 17:20:38 +0000 (17:20 +0000)] 
* config/tc-cris.c: Update all comments regarding explicit relocations
to, besides PIC, also imply TLS or to say "relocation specifier" or
similar.
(RELOC_SUFFIX_CHAR): Rename from PIC_SUFFIX_CHAR.  Change all callers.
(cris_get_reloc_suffix): Rename from cris_get_pic_suffix.  Change all
callers.  Also handle TLS relocs.
(cris_get_specified_reloc_size): Rename from cris_get_pic_reloc_size.
Change all callers.  Also handle TLS relocs.
(tls): New constant.
(cris_process_instruction): Check for non-PIC TLS relocations and
adjust message when emitting error message about relocation not
fitting.
(get_autoinc_prefix_or_indir_op): Also check for relocation suffix
when tls is true.
(get_3op_or_dip_prefix_op): Ditto.
(cris_number_to_imm, tc_gen_reloc): Handle TLS relocs like PIC relocs.

15 years ago * elf32-cris.c (TLSHOWTO32, TLSHOWTO16): New macros.
Hans-Peter Nilsson [Sat, 4 Oct 2008 17:18:36 +0000 (17:18 +0000)] 
* elf32-cris.c (TLSHOWTO32, TLSHOWTO16): New macros.
(cris_elf_howto_table): Add entries for R_CRIS_32_GOT_GD,
R_CRIS_16_GOT_GD, R_CRIS_32_GD, R_CRIS_DTP, R_CRIS_32_DTPREL,
R_CRIS_16_DTPREL, R_CRIS_DTPMOD, R_CRIS_32_GOT_TPREL,
R_CRIS_16_GOT_TPREL,  R_CRIS_32_TPREL,  R_CRIS_16_TPREL.
(cris_reloc_map): Similarly.
* reloc.c (bfd_reloc_code_type): Add entries for
BFD_RELOC_CRIS_32_GOT_GD, BFD_RELOC_CRIS_16_GOT_GD,
BFD_RELOC_CRIS_32_GD, BFD_RELOC_CRIS_DTP,
BFD_RELOC_CRIS_32_DTPREL, BFD_RELOC_CRIS_16_DTPREL,
BFD_RELOC_CRIS_DTPMOD, BFD_RELOC_CRIS_32_GOT_TPREL,
BFD_RELOC_CRIS_16_GOT_TPREL, BFD_RELOC_CRIS_32_TPREL,
BFD_RELOC_CRIS_16_TPREL.
* libbfd.h, bfd-in2.h: Regenerate.

15 years ago * cris.h (R_CRIS_32_GOT_GD, R_CRIS_16_GOT_GD, R_CRIS_32_GD)
Hans-Peter Nilsson [Sat, 4 Oct 2008 17:16:30 +0000 (17:16 +0000)] 
* cris.h (R_CRIS_32_GOT_GD, R_CRIS_16_GOT_GD, R_CRIS_32_GD)
(R_CRIS_DTP, R_CRIS_32_DTPREL, R_CRIS_16_DTPREL, R_CRIS_DTPMOD)
(R_CRIS_32_GOT_TPREL, R_CRIS_16_GOT_TPREL, R_CRIS_32_TPREL)
(R_CRIS_16_TPREL): New relocations.

15 years ago * mi/mi-interp.c (mi_on_resume): Flush raw_stdout.
Vladimir Prus [Sat, 4 Oct 2008 14:58:54 +0000 (14:58 +0000)] 
* mi/mi-interp.c (mi_on_resume): Flush raw_stdout.

15 years ago2008-10-04 H.J. Lu <hongjiu.lu@intel.com>
H.J. Lu [Sat, 4 Oct 2008 14:55:47 +0000 (14:55 +0000)] 
2008-10-04  H.J. Lu  <hongjiu.lu@intel.com>

PR ld/6931
* ld-elf/group7.d: New.

This page took 0.069953 seconds and 4 git commands to generate.