deliverable/binutils-gdb.git
11 years agoDon't decompress the section in bfd_is_section_compressed
H.J. Lu [Wed, 24 Oct 2012 21:36:50 +0000 (21:36 +0000)] 
Don't decompress the section in bfd_is_section_compressed

* compress.c (bfd_is_section_compressed): Don't decompress the
section.

11 years agoAdd comments in ravenscar_sparc_fetch_registers.
Joel Brobecker [Wed, 24 Oct 2012 19:08:16 +0000 (19:08 +0000)] 
Add comments in ravenscar_sparc_fetch_registers.

gdb/ChangeLog:

* ravenscar-sparc-thread.c (ravenscar_sparc_fetch_registers):
Add comments.

11 years agoremote packet sent after Ravenscar inferior exited
Joel Brobecker [Wed, 24 Oct 2012 18:19:50 +0000 (18:19 +0000)] 
remote packet sent after Ravenscar inferior exited

When debugging a program using the Ravenscar profile, the debugger
sometimes tries to send the following packet to the remote after
the inferior exited.

     (gdb) c
     Continuing.
     [...]
     Sending packet: $vCont;c:1#13...Ack
     Packet received: W00
     Sending packet: $Hg1#e0...putpkt: write failed: Broken pipe.

As the inferior exited, the remote has already disconnected, and thus
the operation fails.

The reason why GDB sends the package is because the ravenscar-thread
module tries to updates the list of threads.  But this doesn't make
sense, since the program has exited.  This patch fixes it.

gdb/ChangeLog:

        * ravenscar-thread.c (ravenscar_wait): Only update the list
        of threads and inferior_ptid if the inferior is still alive.

11 years ago[Ada] use lbasename when testing if file is part of Ada runtime.
Joel Brobecker [Wed, 24 Oct 2012 18:17:22 +0000 (18:17 +0000)] 
[Ada] use lbasename when testing if file is part of Ada runtime.

We use a list of regular expressions to match a symtab filenames
against the names of the files in the Ada runtime.  These regular
expressions do assume that the filename is a basename, however.
So make sure to evaluate these regular expressions against
the symtab's filename.

Without this patch, we run into problems when the Ada runtime was built
using a project file (through gprbuild).

gdb/ChangeLog:

        * ada-lang.c (is_known_support_routine): Use lbasename when
        matching the symtab's filename against
        known_runtime_file_name_patterns.

11 years ago[Ada] Allow assignment to wide string.
Joel Brobecker [Wed, 24 Oct 2012 18:14:23 +0000 (18:14 +0000)] 
[Ada] Allow assignment to wide string.

Given the following variable declaration...

   Www : Wide_String := "12345";

... this patch allows the following assignment to work:

   (gdb) set variable www := "qwert"

Without this patch, the debugger rejects the assignment because
the size of the array elements are different:

   (gdb) set www := "asdfg"
   Incompatible types in assignment

(on the lhs, we have an array of 2-bytes elements, and on the rhs,
we have a standard 1-byte string).

gdb/ChangeLog:

        * ada-lang.c (ada_same_array_size_p): New function.
        (ada_promote_array_of_integrals): New function.
        (coerce_for_assign): Add handling of arrays where the elements
        are integrals of a smaller size than the size of the target
        array element type.

gdb/testsuite/ChangeLog:

        * gdb.ada/set_wstr: New testcase.

11 years agooff-by-one max exponent computation in convert_doublest_to_floatformat
Joel Brobecker [Wed, 24 Oct 2012 18:11:21 +0000 (18:11 +0000)] 
off-by-one max exponent computation in convert_doublest_to_floatformat

Assuming the following variable definition:

    long double inp = 2.0;

On platforms where "long double" is a double precision IEEE flaoting
point, GDB currently behaves as follow:

    (gdb) set variable inp = 1.6e+308l
    (gdb) p inp
    $2 = inf   <<<<---- !!!!

Instead, the value of "inp" should be printed as:

    (gdb) p inp
    $1 = 1.6e+308

The problem is due to a small error in the comparison of the exponent
versus the maximum value this exponent can take, causing us to think
that the value was too big to fit. But it isn't.

gdb/ChangeLog:

        * doublest.c (convert_doublest_to_floatformat): Fix comparison
        against maximum exponent value.

gdb/testsuite/ChangeLog:

        * gdb.base/ldbl_e308.c, gdb.base/ldbl_e308.exp: New files.

11 years ago[Ada] Skip unwind-seh.c when searching first "user" frame
Joel Brobecker [Wed, 24 Oct 2012 18:08:05 +0000 (18:08 +0000)] 
[Ada] Skip unwind-seh.c when searching first "user" frame

On x86_64-windows with GCC 4.7 (using native SEH info), the debugger
behaves as follow:

    (gdb) catch exception unhandled
    Catchpoint 1: unhandled Ada exceptions
    (gdb) run
    Starting program: C:\[...]\b.exe

    Catchpoint 1, unhandled CONSTRAINT_ERROR at 0x000000000040cc57 in _GCC_specific_handler ([...]) at ../../../src/libgcc/unwind-seh.c:289
    [...]

This is after compiler the following code:

    procedure B is
    begin
       raise Constraint_Error;
    end B;

... using the following command:

    % gnatmake -g b

When hitting the exception catchpoint, it should have gone up the stack
all the way until finding the frame corresponding to procedure B.
But if stopped short because unwind-seh.c is compiled with debugging
information, and the debugger is also able to locate that source file.

To prevent this from happening, this patch adds unwind-seh.c to the list
of files that should be ignored, regardless of other factors.

gdb/ChangeLog:

        * ada-lang.h (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Add entry for
        "unwind-seh.c".

11 years ago[Ada] Pointers to unconstrained arrays inside variant record.
Joel Brobecker [Wed, 24 Oct 2012 18:06:10 +0000 (18:06 +0000)] 
[Ada] Pointers to unconstrained arrays inside variant record.

gdb/ChangeLog:

        * ada-lang.c (ada_template_to_fixed_record_type_1): Do not
        strip typedef layer when computing the fixed type's field type,
        only when computing its size.

gdb/testsuite/ChangeLog:

        * gdb.ada/unc_arr_ptr_in_var_rec: New testcase.

11 years ago* gdb.base/callfuncs.exp: PR gdb/12783 is now fixed.
Mark Kettenis [Wed, 24 Oct 2012 14:59:24 +0000 (14:59 +0000)] 
* gdb.base/callfuncs.exp: PR gdb/12783 is now fixed.

11 years agoPR gdb/12783
Mark Kettenis [Wed, 24 Oct 2012 14:56:01 +0000 (14:56 +0000)] 
PR gdb/12783
* i386-tdep.c (i386_return_value): Handle complex double and long
double.

11 years agogdb/testsuite/
Jan Kratochvil [Wed, 24 Oct 2012 13:45:51 +0000 (13:45 +0000)] 
gdb/testsuite/
* gdb.base/callfuncs.exp (do_function_calls): Fix
setup_kfail_for_target for -m32 mode.

11 years ago * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
Corinna Vinschen [Wed, 24 Oct 2012 13:41:36 +0000 (13:41 +0000)] 
* configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
against Mingw64 w32api.
* configure: Regenerate.

11 years ago[Windows] run program with space in path to exe.
Joel Brobecker [Wed, 24 Oct 2012 13:40:16 +0000 (13:40 +0000)] 
[Windows] run program with space in path to exe.

The following works...

    % gdb c:\path to exe\foo.exe
    (gdb) start

... unless a file or directory called "c:\path" or "c:\path to" exist.
This is what happens in the latter case:

    (gdb) start
    [...]
    Error creating process C:\path to exe\foo.exe (error 193).

This is because we are calling CreateProcess (et al) without specifying
the lpApplicationName, so Windows determines the name of the executable
using the second argument, which is the entire command line.  This
command line is a space-separated list of tokens, so the space in
the path to the executable which potentially creates an ambiguity.
The ambiguity is automatically resolved unless we're in the situation
above.

The solution, as suggested by the MSDN documentation for CreateProcess
is to quote the executable name.

gdb/ChangeLog:

        * windows-nat.c (windows_create_inferior) [!__CYGWIN__]:
        New local variable args_len.
        Quote the name of the executable when computing the command line.

11 years agoDon't set bfdtest1 with findfile
H.J. Lu [Wed, 24 Oct 2012 12:28:54 +0000 (12:28 +0000)] 
Don't set bfdtest1 with findfile

* binutils-all/ar.exp (bfdtest1): Remove findfile.

11 years agoMove disable_target_specific_optimizations to bfd_link_info
H.J. Lu [Wed, 24 Oct 2012 11:09:28 +0000 (11:09 +0000)] 
Move disable_target_specific_optimizations to bfd_link_info

include/

* bfdlink.h (bfd_link_info): Add
disable_target_specific_optimizations.

ld/

* ld.h (command_line): Remove
disable_target_specific_optimizations.
(RELAXATION_DISABLED_BY_DEFAULT): Removed.
(RELAXATION_DISABLED_BY_USER): Likewise.
(RELAXATION_ENABLED): Likewise.
(DISABLE_RELAXATION): Likewise.
(ENABLE_RELAXATION): Likewise.

* ldmain.c (main): Updated.

* ldmain.h (RELAXATION_DISABLED_BY_DEFAULT): New macro.
(RELAXATION_DISABLED_BY_USER): Likewise.
(RELAXATION_ENABLED): Likewise.
(DISABLE_RELAXATION): Likewise.
(ENABLE_RELAXATION): Likewise.

11 years agogold/
Cary Coutant [Wed, 24 Oct 2012 02:32:15 +0000 (02:32 +0000)] 
gold/
* testsuite/Makefile.am (TEST_OBJCOPY): New macro.
* testsuite/Makefile.in: Regenerate.
* testsuite/dwp_test.h: New source file.
* testsuite/dwp_test_1.cc: New source file.
* testsuite/dwp_test_1.s: New source file.
* testsuite/dwp_test_1.sh: New source file.
* testsuite/dwp_test_1b.cc: New source file.
* testsuite/dwp_test_1b.s: New source file.
* testsuite/dwp_test_2.cc: New source file.
* testsuite/dwp_test_2.s: New source file.
* testsuite/dwp_test_2.sh: New source file.
* testsuite/dwp_test_main.cc: New source file.
* testsuite/dwp_test_main.s: New source file.

11 years agogold/
Cary Coutant [Wed, 24 Oct 2012 02:26:39 +0000 (02:26 +0000)] 
gold/
* dwp.h: New header file.
* dwp.cc: New source file.
* gold.h: Move shared declarations to system.h.
* system.h: New header file.
* Makefile.am: Add dwp.
* Makefile.in: Regenerate.

11 years agobinutils/
Cary Coutant [Wed, 24 Oct 2012 01:59:39 +0000 (01:59 +0000)] 
binutils/
* dwarf.c (do_debug_addr, do_debug_cu_index): New global flags.
(load_debug_info): Fix typo.
(cu_tu_indexes_read, shndx_pool, shndx_pool_size, shndx_pool_used):
New global variables.
(prealloc_cu_tu_list, add_shndx_to_cu_tu_entry, end_cu_tu_entry)
(process_cu_tu_index, load_cu_tu_indexes, find_cu_tu_set)
(display_cu_index): New functions.
(dwarf_select_sections_by_names): Add "debug_addr", "cu_index".
Sort entries alphabetically.
(dwarf_select_sections_all): Set do_debug_addr, do_debug_cu_index.
(debug_displays): Add .debug_cu_index, .debug_tu_index.
Clean up formatting.
* dwarf.h (dwarf_section_display_enum): Add dwp_cu_index,
dwp_tu_index.
(do_debug_addr, do_debug_cu_index): New global flags.
(find_cu_tu_set): New function declaration.
* objdump.c (usage): Add --dwarf=addr, --dwarf=cu_index.
* readelf.c (find_section_in_set): New function.
(usage): Add --debug-dump=addr, --debug_dump=cu_index.
(process_section_headers): Check do_debug_addr and do_debug_cu_index.
(section_subset): New global variable.
(load_debug_section): Restrict search to section subset.
(display_debug_section): Add section index as paramter.  Select subset
of sections when dumping a .dwp file.  Update caller.

11 years ago*** empty log message ***
gdbadmin [Wed, 24 Oct 2012 00:00:02 +0000 (00:00 +0000)] 
*** empty log message ***

11 years ago PR bootstrap/54820
Eric Botcazou [Tue, 23 Oct 2012 23:02:33 +0000 (23:02 +0000)] 
PR bootstrap/54820
* configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
* configure: Regenerate.

11 years agodaily update
Alan Modra [Tue, 23 Oct 2012 23:00:04 +0000 (23:00 +0000)] 
daily update

11 years agogold/
Cary Coutant [Tue, 23 Oct 2012 21:41:37 +0000 (21:41 +0000)] 
gold/
* dwarf_reader.cc (Dwarf_ranges_table::read_range_list): Call
Dwarf_info_reader::read_from_pointer.
(Dwarf_pubnames_table::read_header): Likewise.
(Dwarf_pubnames_table::next_name): Likewise.
(Dwarf_die::read_attributes): Likewise.
(Dwarf_die::skip_attributes): Likewise.
(Dwarf_info_reader::read_from_pointer): New function template.
* dwarf_reader.h (Dwarf_ranges_table): Add dwinfo_.
(Dwarf_pubnames_table): Likewise.
(Dwarf_info_reader::read_from_pointer): New function template.
* gdb-index.cc (Gdb_index_info_reader): Adjust call to
Dwarf_pubnames_table ctor.

11 years agogold/
Cary Coutant [Tue, 23 Oct 2012 21:37:26 +0000 (21:37 +0000)] 
gold/
* dwarf_reader.cc (Dwarf_info_reader::do_parse): Use stored
abbrev_shndx.
* dwarf_reader.h (Dwarf_info_reader::Dwarf_info_reader): Initialize
abbrev_shndx_.
(Dwarf_info_reader::set_abbrev_shndx): New method.
(Dwarf_info_reader::abbrev_shndx_): New data member.

11 years agogold/
Cary Coutant [Tue, 23 Oct 2012 21:34:58 +0000 (21:34 +0000)] 
gold/
* dwarf_reader.cc (make_elf_reloc_mapper): Check size and endianness
from object, not parameters.
(Dwarf_info_reader::parse): Likewise.
* object.h (Relobj::elfsize, Relobj::is_big_endian): New methods.
(Relobj::do_elfsize, Relobj::do_is_big_endian): New methods.
(Sized_relobj::do_elfsize, Sized_relobj::do_is_big_endian): New
methods.

11 years agogold/
Cary Coutant [Tue, 23 Oct 2012 21:29:20 +0000 (21:29 +0000)] 
gold/
* fileread.cc (Input_file::Input_file): New constructor.
* fileread.h (class Input_file): Add new constructor.

11 years ago* gdb.base/callfuncs.exp: PR gdb/12796, gdb/12798 and gdb/12800
Mark Kettenis [Tue, 23 Oct 2012 18:25:25 +0000 (18:25 +0000)] 
* gdb.base/callfuncs.exp: PR gdb/12796, gdb/12798 and gdb/12800
are now fixed.

11 years agoPR gdb/12796
Mark Kettenis [Tue, 23 Oct 2012 18:16:55 +0000 (18:16 +0000)] 
PR gdb/12796
PR gdb/12798
PR gdb/12800
* amd64-tdep.h (enum amd64_regnum): Add AMD64_ST1_REGNUM and
AMD64_FTAG_REGNUM.
* amd64-tdep.c (amd64_classify): Classify complex types.
(amd64_return_value): Handle the COMPLEX_X87 class.

11 years agobinutils
Tom Tromey [Tue, 23 Oct 2012 17:46:44 +0000 (17:46 +0000)] 
binutils
* readelf.c (get_note_type): Handle NT_SIGINFO, NT_FILE.
(print_core_note): New function.
(process_note): Call it.
include/common/elf
* common.h (NT_SIGINFO, NT_FILE): New defines.

11 years agogdb/testsuite:
Yao Qi [Tue, 23 Oct 2012 15:49:11 +0000 (15:49 +0000)] 
gdb/testsuite:

* gdb.base/info-os.exp: Resume the inferior until it exits.

11 years agoChange target-wide-charset to UTF-16 on ppc-aix.
Joel Brobecker [Tue, 23 Oct 2012 15:37:21 +0000 (15:37 +0000)] 
Change target-wide-charset to UTF-16 on ppc-aix.

On ppc-aix, type wchar_t is 2 bytes long, so override the default
target-wide-charset (UTF-32) with UTF-16. This allows us to print
wide characters correctly.

gdb/ChangeLog:

        * rs6000-aix-tdep.c (rs6000_aix_auto_wide_charset): New function.
        (rs6000_aix_init_osabi): Set auto_wide_charset gdbarch method.

11 years agoSet default target-wide-charset setting to "UTF-16" for x86_64-windows.
Joel Brobecker [Tue, 23 Oct 2012 15:37:03 +0000 (15:37 +0000)] 
Set default target-wide-charset setting to "UTF-16" for x86_64-windows.

Type wchar_t is only 2 bytes long on x86_64-windows.

gdb/ChangeLog:

        * amd64-windows-tdep.c (amd64_windows_auto_wide_charset): New
        function.
        (amd64_windows_init_abi): Set auto_wide_charset gdbarch method
        to amd64_windows_auto_wide_charset.

11 years ago bfd/
Nathan Sidwell [Tue, 23 Oct 2012 09:33:56 +0000 (09:33 +0000)] 
bfd/
* bfd-in.h (bfd_elf_stack_segment_size): Declare.
* bfd-in2.h: Rebuilt.
* elfxx-target.h (elf_backend_stack_align): New.
(elfNN_bed): Add it.
* elf-bfd.h (struct elf_backend_data): Add stack_align field.
* elf.c (bfd_elf_map_sections_to_segments): Pay attention to
stack_align and stacksize for PT_GNU_STACK segment.
(assign_file_positions_for_non_load_sections): Set p_memsz for
PT_GNU_STACK segment.
(copy_elf_program_header): Copy PT_GNU_STACK size.
* elflink.c (bfd_elf_stack_segment_size): New function, taken from
uclinux backends.
(bfd_elf_size_dynamic_sections): Determine
PT_GNU_STACK requirements after calling backend.  Pay attention to
stacksize.
* elf32-bfin.c (elf32_bfinfdpic_always_size_sections): Call
bfd_elf_stack_segment_size.
(elf32_bfinfdpic_modify_program_headers): Delete.
(elf32_bfingfdpic_copy_private_bfd_data): Don't copy PT_GNU_STACK
here.
(elf_backend_stack_align): Override.
(elf_backend_modify_program_headers): Don't override.
* elf32-frv.c (frvfdpic_always_size_sections): Call
bfd_elf_stack_segment_size.
(elf32_frvfdpic_modify_program_headers): Delete.
(elf32_frvfdpic_copy_private_bfd_data): Don't copy PT_GNU_STACK
here.
(elf_backend_stack_align): Override.
(elf_backend_modify_program_headers): Don't override.
* elf32-lm32.c (lm32_elf_always_size_sections): Leave
PT_GNU_STACK creation to underlying elf support.  Check
__stacksize here for backwards compatibility, and set it if
needed.
(lm32_elf_modify_segment_map): Delete.
(lm32_elf_modify_program_headers): Delete.
(elf_backend_stack_align): Override.
(elf_backend_modify_segment_map): Don't override.
(elf_backend_modify_program_headers): Don't override.
* elf32-sh.c (sh_elf_always_size_sections): Call
bfd_elf_stack_segment_size.
(sh_elf_modify_program_headers): Delete.
(sh_elf_copy_private_data): Don't copy PT_GNU_STACK
here.
(elf_backend_stack_align): Override.
(elf_backend_modify_program_headers): Don't override.
* elf32-tic6x.c (elf32_tic6x_always_size_sections): Call
bfd_elf_stack_segment_size.
(elf32_tic6x_modify_program_headers): Delete.
(elf32_tic6x_copy_private_data): Delete.
(elf_backend_stack_align): Override.
(bfd_elf32_bfd_copy_private_bfd_data): Don't override.
(elf_backend_modify_program_headers): Don't override.

include/
* bfdlink.h (struct bfd_link_info): Add stacksize option.

ld/
* ld.texinfo (stack-size): New option.
* emultempl/elf32.em: Add stack-size option.

ld/testsuite/
* ld-elf/binutils.exp: Add -z stack-size=0.
* ld-elf/elf.exp: Add stack-exec and stack-size tests.
* ld-elf/orphan-region.d: Add stack-size option. Remove xfail.
* ld-elf/stack-exec.rd: New.
* ld-elf/stack-size.rd: New.
* ld-elf/stack.s: New.
* ld-scripts/empty-aligned.d: Add stack-size option.
* ld-sh/fdpic-stack-set.d: New.
* ld-tic6x/shlib-1.rd: Remove __stacksize symbol.
* ld-tic6x/shlib-1b.rd: Likewise.
* ld-tic6x/shlib-1r.rd: Likewise.
* ld-tic6x/shlib-1rb.rd: Likewise.
* ld-tic6x/shlib-app-1.rd: Likewise.
* ld-tic6x/shlib-app-1b.rd: Likewise.
* ld-tic6x/shlib-app-1r.rd: Likewise.
* ld-tic6x/shlib-app-1rb.rd: Likewise.
* ld-tic6x/shlib-noindex.rd: Likewise.
* ld-tic6x/static-app-1.rd: Likewise.
* ld-tic6x/static-app-1b.rd: Likewise.
* ld-tic6x/static-app-1r.rd: Likewise.
* ld-tic6x/static-app-1rb.rd: Likewise.

11 years agogdb/
Yao Qi [Tue, 23 Oct 2012 06:20:49 +0000 (06:20 +0000)] 
gdb/
* event-top.c (mark_async_signal_handler_wrapper): Remove.
* event-top.h: Remove its declaration.
(async_request_quit): Call mark_async_signal_handler instead of
mark_async_signal_handler_wrapper.
(async_do_nothing, async_disconnect): Likewise.
(async_stop_sig): Likewise.
* remote.c (handle_remote_sigint): Likewise.
(handle_remote_sigint_twice): Likewise.

11 years agogdb/
Yao Qi [Tue, 23 Oct 2012 06:12:04 +0000 (06:12 +0000)] 
gdb/
* event-top.c (sigint_token, sighup_token): Replace 'void *'
with 'static struct async_signal_handler *'.
(sighup_token, sigquit_token, sigstp_token): Likewise.

11 years ago*** empty log message ***
gdbadmin [Tue, 23 Oct 2012 00:00:33 +0000 (00:00 +0000)] 
*** empty log message ***

11 years agodaily update
Alan Modra [Mon, 22 Oct 2012 23:00:04 +0000 (23:00 +0000)] 
daily update

11 years agoopcodes/
Peter Bergner [Mon, 22 Oct 2012 16:04:28 +0000 (16:04 +0000)] 
opcodes/
* ppc-opc.c (powerpc_opcodes) <vcfpsxws>: Fix opcode spelling.

gas/testsuite/
* gas/ppc/altivec.s <vcfpsxws>: Fix opcode spelling.

11 years agoAli Anwar <ali_anwar@codesourcery.com>
Ali Anwar [Mon, 22 Oct 2012 13:35:43 +0000 (13:35 +0000)] 
Ali Anwar  <ali_anwar@codesourcery.com>

* gdbarch.sh (function_list): Use 'pstring' when printing a
variable which could return NULL.
* gdbarch.c: Regenerate.

11 years agoinclude/
Alan Modra [Mon, 22 Oct 2012 13:33:49 +0000 (13:33 +0000)] 
include/
PR ld/14426
* bfdlink.h (bfd_link_info): Add ignore_hash.
ld/
PR ld/14426
* ldlex.h (option_values): Add OPTION_IGNORE_UNRESOLVED_SYMBOL.
* lexsup.c (parse_args): Likewise.
(ld_options): Describe --ignore-unresolved-symbol.
* ldmain.h (add_ignoresym): Declare.
* ldmain.c (add_ignoresym): New function, extracted from..
(undefined_symbol): ..here.  Return if the symbol is in ignore_hash.
(constructor_callback): Don't use global link_info here.
(reloc_overflow): Likewise.

11 years ago * as.c (dump_statistics): Compute data size as the delta between
Simon Baldwin [Mon, 22 Oct 2012 11:13:25 +0000 (11:13 +0000)] 
* as.c (dump_statistics): Compute data size as the delta between
current sbrk(0) and start_sbrk.
* (main): Set start_sbrk to sbrk(0) on entry.

11 years ago PR bootstrap/54820
Eric Botcazou [Mon, 22 Oct 2012 07:32:04 +0000 (07:32 +0000)] 
PR bootstrap/54820
* Makefile.tpl (STAGE1_FLAGS_TO_PASS): New variable.
(all-[+prefix+][+module+]): Pass stage1_args to sub-makes.
(all-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
(clean-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
(host_modules): Set stage1_args to STAGE1_FLAGS_TO_PASS.
* Makefile.in: Regenerate.
* configure.ac (have_static_libs): New variable and associated check.
(stage1-ldflags): Move to after stage1_libs and set to -static-libstdc++
-static-libgcc if stage1_libs is empty and have_static_libs is yes.
* configure: Regenerate.

11 years ago * plugin.c (plugin_load_plugins): Warning fix.
Alan Modra [Mon, 22 Oct 2012 04:54:25 +0000 (04:54 +0000)] 
* plugin.c (plugin_load_plugins): Warning fix.

11 years ago * cache.c (cache_bmmap): Don't use void* arithmetic.
Alan Modra [Mon, 22 Oct 2012 04:51:52 +0000 (04:51 +0000)] 
* cache.c (cache_bmmap): Don't use void* arithmetic.

11 years ago*** empty log message ***
gdbadmin [Mon, 22 Oct 2012 00:00:33 +0000 (00:00 +0000)] 
*** empty log message ***

11 years agodaily update
Alan Modra [Sun, 21 Oct 2012 23:00:04 +0000 (23:00 +0000)] 
daily update

11 years agoUpdate binutils-all/dw2-1.W
H.J. Lu [Sun, 21 Oct 2012 11:10:54 +0000 (11:10 +0000)] 
Update binutils-all/dw2-1.W

* binutils-all/dw2-1.W: Updated.

11 years agoHandle x32 in dump_dwarf
H.J. Lu [Sun, 21 Oct 2012 10:56:00 +0000 (10:56 +0000)] 
Handle x32 in dump_dwarf

* objdump.c (dump_dwarf): Handle bfd_mach_x64_32 and
bfd_mach_x64_32_intel_syntax.

11 years agobfd/
Alan Modra [Sun, 21 Oct 2012 09:06:07 +0000 (09:06 +0000)] 
bfd/
* compress.c (bfd_cache_section_contents): New function.
* bfd-in2.h: Regenerate.
binutils/
* objdump.c (load_specific_debug_section): Use
bfd_cache_section_contents.

11 years agoCorrect last entry
Hans-Peter Nilsson [Sun, 21 Oct 2012 03:25:02 +0000 (03:25 +0000)] 
Correct last entry

11 years ago * linker.c (_bfd_generic_link_output_symbols): Handle a
Hans-Peter Nilsson [Sun, 21 Oct 2012 03:23:37 +0000 (03:23 +0000)] 
* linker.c (_bfd_generic_link_output_symbols): Handle a
no-longer-global symbol entered as a BFD_PLUGIN.

11 years ago*** empty log message ***
gdbadmin [Sun, 21 Oct 2012 00:00:03 +0000 (00:00 +0000)] 
*** empty log message ***

11 years agodaily update
Alan Modra [Sat, 20 Oct 2012 23:00:05 +0000 (23:00 +0000)] 
daily update

11 years agoAdd an objdump test on compress debug sections
H.J. Lu [Sat, 20 Oct 2012 22:14:08 +0000 (22:14 +0000)] 
Add an objdump test on compress debug sections

* binutils-all/compress.exp: Add an objdump test.
* binutils-all/dw2-1.W: New file.

11 years ago * compress.c: Reinstate 2012-10-19 change.
Alan Modra [Sat, 20 Oct 2012 08:27:13 +0000 (08:27 +0000)] 
* compress.c: Reinstate 2012-10-19 change.
(bfd_get_full_section_contents): Don't free unless we alloc.
Use proper decompress size.  Delete some vars, rename others.

11 years ago*** empty log message ***
gdbadmin [Sat, 20 Oct 2012 00:00:04 +0000 (00:00 +0000)] 
*** empty log message ***

11 years agodaily update
Alan Modra [Fri, 19 Oct 2012 23:00:05 +0000 (23:00 +0000)] 
daily update

11 years agoppc-aix osabi sniffer: Turn test of bfd flavour into assertion
Joel Brobecker [Fri, 19 Oct 2012 19:58:18 +0000 (19:58 +0000)] 
ppc-aix osabi sniffer: Turn test of bfd flavour into assertion

Due to the way this function is registers, we know that given bfd's
flavour should always be bfd_target_xcoff_flavour, thus making
the former test always true, which means that this function should
always return GDB_OSABI_AIX, and never return GDB_OSABI_UNKNOWN.

This patch also fixes a typo detected by Tom Tromey that caused
the test itself to be completely ineffective.

gdb/ChangeLog (by Tom Tromey and Joel Brobecker):

        * rs6000-aix-tdep.c (rs6000_aix_osabi_sniffer): Replace
        inneffective if condition by gdb assertion.  Add function
        description comment.

11 years agoDocument exp_descriptor.op_name should never return NULL.
Joel Brobecker [Fri, 19 Oct 2012 19:55:56 +0000 (19:55 +0000)] 
Document exp_descriptor.op_name should never return NULL.

This documents a constaint that struct exp_descriptor's "op_name"
method implementation should obey.  This might not have been part
of the initial design, but is currently true of all instantiations,
and already assumed by the current users.

gdb/ChangeLog:

        * parser-defs.h (struct exp_descriptor): Document constraint
        on return value for "op_name" callbacks.

11 years ago * compress.c: Revert previous patch.
Tom Tromey [Fri, 19 Oct 2012 16:59:57 +0000 (16:59 +0000)] 
* compress.c: Revert previous patch.

11 years ago * compress.c (bfd_get_full_section_contents): Don't cache
Tom Tromey [Fri, 19 Oct 2012 15:51:53 +0000 (15:51 +0000)] 
* compress.c (bfd_get_full_section_contents): Don't cache
decompressed contents.

11 years agoCorrect my ChangeLog entry
xuepeng guo [Fri, 19 Oct 2012 07:50:20 +0000 (07:50 +0000)] 
Correct my ChangeLog entry

11 years ago * gdb.base/ctxobj.exp: Skip if skip_shlib_tests returns true.
xuepeng guo [Fri, 19 Oct 2012 07:36:19 +0000 (07:36 +0000)] 
    * gdb.base/ctxobj.exp: Skip if skip_shlib_tests returns true.
        * gdb.base/print-file-var.exp: Likewise.
        * gdb.base/type-opaque.exp: Likewise.

11 years ago*** empty log message ***
gdbadmin [Fri, 19 Oct 2012 00:00:03 +0000 (00:00 +0000)] 
*** empty log message ***

11 years agodaily update
Alan Modra [Thu, 18 Oct 2012 23:00:04 +0000 (23:00 +0000)] 
daily update

11 years agoAdd missed file on my last commit
Kai Tietz [Thu, 18 Oct 2012 20:40:39 +0000 (20:40 +0000)] 
Add missed file on my last commit

11 years ago * tracepoint.c (print_one_static_tracepoint_marker): Constify.
Tom Tromey [Thu, 18 Oct 2012 20:14:45 +0000 (20:14 +0000)] 
* tracepoint.c (print_one_static_tracepoint_marker): Constify.
* symtab.c (iterate_over_some_symtabs): Constify.
* source.h (symtab_to_fullname): Return 'const char *'.
* source.c (symtab_to_fullname): Return 'const char *'.
* python/py-symtab.c (stpy_fullname): Constify.
* cli/cli-cmds.c (edit_command): Constify.
* breakpoint.c (print_breakpoint_location)
(update_static_tracepoint): Constify.

11 years ago * breakpoint.c (compare_breakpoints): Fix comparison.
Tom Tromey [Thu, 18 Oct 2012 20:12:21 +0000 (20:12 +0000)] 
* breakpoint.c (compare_breakpoints): Fix comparison.

11 years agoRemove some extraneous changes in readline/terminal.c
Joel Brobecker [Thu, 18 Oct 2012 18:55:41 +0000 (18:55 +0000)] 
Remove some extraneous changes in readline/terminal.c

This patch removes some unnecessary differences between the official
version of readline, and GDB's copy of it.

readline/ChangeLog.gdb:

        * terminal.c: Remove duplicate includes of windows.h and
        wincon.h.
        (_rl_get_screen_size): Remove redundant code for MinGW getting
        the console size from the Windows API.

11 years agoChangeLog bfd
Kai Tietz [Thu, 18 Oct 2012 17:42:29 +0000 (17:42 +0000)] 
ChangeLog bfd

2012-10-18  Kai Tietz  <ktietz@redhat.com>

PR binutils/14067
* coff-i386.c (bfd_target): Add section flag SEC_EXCLUDE.
Allow BFD_COMPRESS and BFD_DECOMPRESS flags.
* coff-x86_64.c: Likewise.
* coffcode.h (DOT_ZDEBUG): New define.
(sec_to_styp_flags): Check for .zdebug.
(styp_to_sec_flags): Likewise.
* coffgen.c (make_a_section): Handle .debug_* section
compression/decompression flags.
* cofflink.c (mark_relocs): Ignore relocations
for a section, which isn't marked as used.
(_bfd_coff_link_input_bfd): Add support of compressed
debug sections.
* compress.c (decompress_contents): Loop as long
as there is input available and there is room for
output.
* bfd/pe-arm.c: Add .zdebug_ partial match entry.
* pe-i386.c: Likewise.
* pe-x86_64.c: Likewise.
* peXXigen.c (_bfd_XXi_swap_aouthdr_out): Don't clear all
data-directories as this might destroy content.

        * coff-i386.c (_bfd_generic_find_nearest_line_discriminator):
        define as coff_find_nearest_line_discriminator.
        * libcoff-in.h (coff_find_nearest_line_discriminator): New
        * libcoff.h: Regenerated.
        * coff-x86_64.c: Likewise.
        * coffgen.c (coff_find_nearest_line_discriminator): New function.
        prototype.

ChangeLog binutils

2012-10-18  Kai Tietz  <ktietz@redhat.com>

* objdump.c (dump_bfd): Call dump headers after
call of slurp_symtab.

ChangeLog ld

2012-10-18  Kai Tietz  <ktietz@redhat.com>

PR binutils/14067
* NEWS: Menition new feature.
* scripttempl/pep.sc: Add zdebug sections.
* scripttempl/pe.sc: L

11 years ago * objcopy.c (is_strip_section_1): Don't strip
Kai Tietz [Thu, 18 Oct 2012 17:29:54 +0000 (17:29 +0000)] 
    * objcopy.c (is_strip_section_1): Don't strip
        .reloc section by default.

11 years ago * config/obj-coff.c: Add include of struc-symbol.h header.
Kai Tietz [Thu, 18 Oct 2012 17:00:56 +0000 (17:00 +0000)] 
    * config/obj-coff.c: Add include of struc-symbol.h header.
        (coff_frob_symbol): Check that function-aux entries are generated for
        defined symbols only.

11 years ago * tic54x-dis.c (print_instruction): Don't use K&R style.
Tom Tromey [Thu, 18 Oct 2012 15:28:06 +0000 (15:28 +0000)] 
* tic54x-dis.c (print_instruction): Don't use K&R style.
(print_parallel_instruction, sprint_dual_address)
(sprint_indirect_address, sprint_direct_address, sprint_mmr)
(sprint_cc2, sprint_condition): Likewise.

11 years ago * valprint.c (generic_emit_char, generic_printstr): Pass size of
Tom Tromey [Thu, 18 Oct 2012 15:26:01 +0000 (15:26 +0000)] 
* valprint.c (generic_emit_char, generic_printstr): Pass size of
gdb_wchar_t to convert_between_encodings.

11 years ago * aarch64-asm.c (aarch64_ins_ldst_reglist): Initialize
Kai Tietz [Thu, 18 Oct 2012 06:53:16 +0000 (06:53 +0000)] 
    * aarch64-asm.c (aarch64_ins_ldst_reglist): Initialize
        value with a default.
        (do_special_encoding): Likewise.
        (aarch64_ins_ldst_elemlist): Pre-initialize QSsize, and opcodeh2
        variables with default.
        * arc-dis.c (write_comments_): Don't use strncat due
        size of state->commentBuffer pointer isn't predictable.

11 years ago * doc/as.texinfo: Add missing documentation about section flag
Kai Tietz [Thu, 18 Oct 2012 06:46:51 +0000 (06:46 +0000)] 
    * doc/as.texinfo: Add missing documentation about section flag
        exclude.

11 years ago PR gold/14727
Alan Modra [Thu, 18 Oct 2012 05:36:02 +0000 (05:36 +0000)] 
PR gold/14727
* object.cc (Relobj::is_section_name_included): Also match
.sdata personality section.

11 years ago * target-reloc.h (class Default_comdat_behavior): New, package up..
Alan Modra [Thu, 18 Oct 2012 04:18:18 +0000 (04:18 +0000)] 
* target-reloc.h (class Default_comdat_behavior): New, package up..
(get_comdat_behaviour): ..this.
(relocate_section): Add Relocate_comdat_behavior template arg,
adjust code to suit.
* arm.cc (Target_arm::relocate_section): Adjust to suit.
(Target_arm::scan_reloc_section): Likewise.
* i386.cc (Target_i386::relocate_section): Likewise.
* sparc.cc (Target_sparc::relocate_section): Likewise.
* tilegx.cc (Target_tilegx::relocate_section): Likewise.
* x86_64.cc (Target_x86_64::relocate_section): Likewise.
* powerpc.cc (class Relocate_comdat_behavior): New.
(Target_powerpc::relocate_section): Don't zap opd relocs.  Supply
gold::relocate_section with new template arg.

11 years ago*** empty log message ***
gdbadmin [Thu, 18 Oct 2012 00:00:32 +0000 (00:00 +0000)] 
*** empty log message ***

11 years agodaily update
Alan Modra [Wed, 17 Oct 2012 23:00:03 +0000 (23:00 +0000)] 
daily update

11 years ago * powerpc.cc (Target_powerpc::Scan::local, global): Always emit
Alan Modra [Wed, 17 Oct 2012 14:33:41 +0000 (14:33 +0000)] 
* powerpc.cc (Target_powerpc::Scan::local, global): Always emit
dynamic relocs for GOT_TPREL got entries, without symbol if
resolving locally.
(Target_powerpc::do_gc_add_reference): Don't add for dynamic objects.
(Target_powerpc::scan_relocs): Define _GLOBAL_OFFSET_TABLE_ early.
(Target_powerpc::Relocate:relocate): REL32 reloc may be unaligned.

11 years ago PR gold/14726
Alan Modra [Wed, 17 Oct 2012 11:58:39 +0000 (11:58 +0000)] 
PR gold/14726
* gold.cc (queue_middle_tasks): Call gc_mark_symbol on _init and _fini.

11 years agogdb:
Yao Qi [Wed, 17 Oct 2012 00:53:24 +0000 (00:53 +0000)] 
gdb:
* breakpoint.c (invalidate_bp_value_on_memory_change): Add one
more parameter 'inferior'.
* corefile.c (write_memory_with_notification): Caller update.

* mi/mi-cmd-var.c: Include "mi-main.h".
(mi_cmd_var_assign): Set mi_suppress_notification.data_write_memory
to 1 and restore it later.
* mi/mi-cmds.c (mi_cmd mi_cmds): Update for "data-write-memory"
and "data-write-memory-bytes.
* mi/mi-interp.c: Include objfiles.h.
(mi_interpreter_init): Call observer_attach_memory_changed.
(mi_memory_changed): New.
* mi/mi-main.h (struct mi_suppress_notification) <memory>:
New field.

* NEWS: Mention new MI notification "memory-changed".

gdb/doc:

* observer.texi (GDB Observers): Update observer
'memory_changed'.
* gdb.texinfo (GDB/MI Async Records): Document for
"memory-changed" notification.

gdb/testsuite:

* gdb.mi/mi-memory-changed.exp: New.

11 years ago*** empty log message ***
gdbadmin [Wed, 17 Oct 2012 00:00:33 +0000 (00:00 +0000)] 
*** empty log message ***

11 years agodaily update
Alan Modra [Tue, 16 Oct 2012 23:00:04 +0000 (23:00 +0000)] 
daily update

11 years agoAdd missing ChangeLog entry for previous commit:
Joel Brobecker [Tue, 16 Oct 2012 22:57:50 +0000 (22:57 +0000)] 
Add missing ChangeLog entry for previous commit:

2012-10-16  Joel Brobecker  <brobecker@adacore.com>

       * coff64-rs6000.c (rs6000coff64_vec): Set _close_and_cleanup
       field to _bfd_archive_close_and_cleanup.
       (aix5coff64_vec): Likewise.

11 years agodangling pointer in coff64-rs6000 archive cache.
Joel Brobecker [Tue, 16 Oct 2012 22:56:55 +0000 (22:56 +0000)] 
dangling pointer in coff64-rs6000 archive cache.

bfd/ChangeLog:

        * coff64-rs6000.c (rs6000coff64_vec): Set _close_and_cleanup
        field to _bfd_archive_close_and_cleanup.
        (aix5coff64_vec): Likewise.

11 years agoDangling bfd pointer in archive cache.
Joel Brobecker [Tue, 16 Oct 2012 22:47:03 +0000 (22:47 +0000)] 
Dangling bfd pointer in archive cache.

This dandling pointer eventually leads to a crash when trying to run
on ppc-aix a program using threading...

bfd/ChangeLog:

        * coff-rs6000.c (rs6000coff_vec): Set _close_and_cleanup
        field to _bfd_archive_close_and_cleanup.
        (pmac_xcoff_vec): Likewise.

11 years ago2012-10-16 Sriraman Tallam <tmsriram@google.com>
Sriraman Tallam [Tue, 16 Oct 2012 16:50:32 +0000 (16:50 +0000)] 
2012-10-16  Sriraman Tallam  <tmsriram@google.com>

* layout.cc (Layout::include_section): Keep sections marked
SHF_EXCLUDE when doing relocatable links.

11 years ago Fixed AArch64 TLS relocation resolution.
Yufeng Zhang [Tue, 16 Oct 2012 16:36:50 +0000 (16:36 +0000)] 
Fixed AArch64 TLS relocation resolution.

bfd/

* elf64-aarch64.c (elf64_aarch64_tls_howto_table): Fix shift value for
R_AARCH64_TLSIE_LD_GOTTPREL_PREL19, R_AARCH64_TLSLE_MOVW_TPREL_G2,
R_AARCH64_TLSLE_MOVW_TPREL_G1, R_AARCH64_TLSLE_MOVW_TPREL_G1_NC,
R_AARCH64_TLSLE_ADD_TPREL_HI12.
(elf64_aarch64_tlsdesc_howto_table): Fix shift value for
R_AARCH64_TLSDESC_LD64_PREL19 and R_AARCH64_TLSDESC_OFF_G1.
(elf64_aarch64_final_link_relocate): Add signed_addend when resolving
AARCH64_TLSLE_*_TPREL_* relocations.

ld/testsuite/

* ld-aarch64/tlsle-symbol-offset.s: New file.
* ld-aarch64/tlsle-symbol-offset.d: New file.
* ld-aarch64/aarch64-elf.exp: Add tlsle-symbol-offset test.

11 years agogdb/testsuite/
Yao Qi [Tue, 16 Oct 2012 13:14:36 +0000 (13:14 +0000)] 
gdb/testsuite/
* gdb.reverse/solib-precsave.exp: Skip if skip_shlib_test
returns true.
Call gdb_load_shlibs.
* gdb.reverse/solib-reverse.exp: Likewise.

11 years agogdb/
Jan Kratochvil [Tue, 16 Oct 2012 08:46:58 +0000 (08:46 +0000)] 
gdb/
* dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Remove comment.

11 years ago * elf32-xtensa.c (free_section_cache): Renamed from
Alan Modra [Tue, 16 Oct 2012 01:42:42 +0000 (01:42 +0000)] 
* elf32-xtensa.c (free_section_cache): Renamed from
clear_section_cache.  Don't zero cache.
(section_cache_section): Remove ineffectual zero of cache.
Call init_section_cache instead.

11 years ago * powerpc.cc (Target_powerpc::define_save_restore_funcs): New func.
Alan Modra [Tue, 16 Oct 2012 00:23:00 +0000 (00:23 +0000)] 
* powerpc.cc (Target_powerpc::define_save_restore_funcs): New func.
(Target_powerpc::do_finalize_sections): Call it.
(Output_data_save_res): New class and supporting functions.
(Target_powerpc::symval_for_branch): Only look up .opd entry for
normal symbols defined in object files.

11 years ago*** empty log message ***
gdbadmin [Tue, 16 Oct 2012 00:00:33 +0000 (00:00 +0000)] 
*** empty log message ***

11 years agodaily update
Alan Modra [Mon, 15 Oct 2012 23:00:04 +0000 (23:00 +0000)] 
daily update

11 years ago * lib/cp-support.exp (cp_test_ptype_class): Add support
Keith Seitz [Mon, 15 Oct 2012 22:32:50 +0000 (22:32 +0000)] 
* lib/cp-support.exp (cp_test_ptype_class): Add support
for class typedefs.

* gdb.cp/derivation.exp: Add tests for g_instance.

11 years ago New option -nh: inhibit loading of ~/.gdbinit.
Doug Evans [Mon, 15 Oct 2012 21:45:04 +0000 (21:45 +0000)] 
New option -nh: inhibit loading of ~/.gdbinit.
* NEWS: Mention -nh.
* main.c (captured_main): Recognize and process -nh.
(print_gdb_help): Mention -nh.
* gdb.1: Mention -nh.  Remove erroneous docs on -nx behavior.

doc/
* gdb.texinfo (Mode Options): Document -nh.
Elaborate on docs for -nx.

11 years agoRemove sp_regnum_from_eax and pc_regnum_from_eax
H.J. Lu [Mon, 15 Oct 2012 20:37:39 +0000 (20:37 +0000)] 
Remove sp_regnum_from_eax and pc_regnum_from_eax

PR backtrace/14646
PR gdb/14647
* i386-tdep.h (gdbarch_tdep): Remove sp_regnum_from_eax and
pc_regnum_from_eax.
* i386-tdep.c (i386_gdbarch_init): Don't use sp_regnum_from_eax
nor pc_regnum_from_eax.
* amd64-tdep.c (amd64_x32_init_abi): Don't set sp_regnum_from_eax
nor pc_regnum_from_eax.

11 years ago * elf.c (special_sections_d): Add comment.
Doug Evans [Mon, 15 Oct 2012 20:36:12 +0000 (20:36 +0000)] 
* elf.c (special_sections_d): Add comment.

11 years agogdb/
Jan Kratochvil [Mon, 15 Oct 2012 19:15:57 +0000 (19:15 +0000)] 
gdb/
Fix entry values resolving in inlined frames.
* dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Move func_addr,
gdbarch and caller_frame initialization later.  Skip INLINE_FRAME
entries of FRAME.

gdb/testsuite/
Fix entry values resolving in inlined frames.
* gdb.arch/amd64-entry-value-inline.S: New file.
* gdb.arch/amd64-entry-value-inline.c: New file.
* gdb.arch/amd64-entry-value-inline.exp: New file.

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