OSDN Git Service

pf3gnuchains/sourceware.git
13 years ago Centralize printing "<optimized out>".
palves [Wed, 26 Jan 2011 01:26:11 +0000 (01:26 +0000)]
Centralize printing "<optimized out>".

gdb/
* valprint.h (val_print_optimized_out): Declare.
* cp-valprint.c (cp_print_value_fields): Use
val_print_optimized_out.
* jv-valprint.c (java_print_value_fields): Ditto.
* p-valprint.c (pascal_object_print_value_fields): Ditto.
* printcmd.c (print_formatted): Ditto.
* valprint.c (valprint_check_validity): Ditto.
(value_check_printable): Ditto.
(val_print_optimized_out): New.

gdb/doc/
* gdb.texinfo: s/value optimized out/optimized out/g

gdb/testsuite/
* gdb.base/frame-args.exp: Adjust.
* gdb.dwarf2/dw2-noloc.exp: Adjust.
* gdb.dwarf2/dw2-inline-param.exp: Adjust.
* gdb.dwarf2/pieces.exp: Adjust.
* gdb.opt/clobbered-registers-O2.exp: Adjust.
* gdb.opt/inline-locals.exp: Adjust.
* gdb.threads/fork-child-threads.exp: Adjust.

13 years agogdb/testsuite/ChangeLog
kwerner [Wed, 26 Jan 2011 01:10:26 +0000 (01:10 +0000)]
gdb/testsuite/ChangeLog

2011-01-25  Ken Werner  <ken.werner@de.ibm.com>

        * gdb.opencl/convs_casts.cl: Move program scope variables into the
        OpenCL kernel function. Add a comment as marker. Add address space
        qualifiers for the remaining program scope variables.
        * gdb.opencl/datatypes.cl: Likewise.
        * gdb.opencl/operators.cl: Likewise.
        * gdb.opencl/vec_comps.cl: Likewise.
        * gdb.opencl/convs_casts.exp: Replace gdb_test_multiple by gdb_test.
        Add breakpoint at the marker comment.
        * gdb.opencl/datatypes.exp: Likewise.
        * gdb.opencl/operators.exp: Likewise.
        * gdb.opencl/vec_comps.exp: Likewise.

13 years ago gdb/
palves [Wed, 26 Jan 2011 00:47:57 +0000 (00:47 +0000)]
gdb/
* infcmd.c (default_print_registers_info): Allocate values so to
never pass a NULL value to val_print.

13 years ago * cp-valprint.c (cp_print_value): Treat the 'skip' local as
palves [Wed, 26 Jan 2011 00:18:34 +0000 (00:18 +0000)]
* cp-valprint.c (cp_print_value): Treat the 'skip' local as
boolean.  Make sure to always pass a value that matches the
contents buffer to callees.  Preserve `address' for following
iterations.
* value.c (value_contents_for_printing_const): New.
(value_address): Constify value argument.
* value.h (value_contents_for_printing_const): Declare.
(value_address): Constify value argument.

13 years ago * regcache.c (struct regcache_descr): Rename
palves [Tue, 25 Jan 2011 21:47:24 +0000 (21:47 +0000)]
* regcache.c (struct regcache_descr): Rename
sizeof_raw_register_valid_p field to sizeof_raw_register_status,
and sizeof_cooked_register_valid_p to
sizeof_cooked_register_status.
(init_regcache_descr): Adjust.
(struct regcache): Rename register_valid_p field to
register_status.
(regcache_xmalloc_1, regcache_xfree, regcache_save)
(do_cooked_read): Adjust.
(regcache_valid_p): Rename to ...
(regcache_register_status): ... this.  Adjust.
(regcache_invalidate): Adjust.
(regcache_raw_read, regcache_cooked_read, regcache_raw_write):
Adjust.
(regcache_raw_supply): Adjust.  If buf i NULL, mark the register
as unavailable, not valid.
(regcache_dump): Adjust.
* regcache.h (enum register_status): New.
(regcache_register_status): Declare.
(regcache_invalidate): Delete declaration.
* corelow.c (get_core_registers): Adjust.
* tracepoint.c (tfile_fetch_registers): Adjust.
* trad-frame.c (REG_VALUE): Rename to ...
(TF_REG_VALUE): ... this.
(REG_UNKNOWN): Rename to ...
(TF_REG_UNKNOWN): ... this.
(trad_frame_set_value, trad_frame_set_unknown): Adjust.
* mi/mi-main.c (register_changed_p): Adjust.

13 years ago * regcache.c (struct regcache_descr): Remove outdated comment.
palves [Tue, 25 Jan 2011 21:13:19 +0000 (21:13 +0000)]
* regcache.c (struct regcache_descr): Remove outdated comment.
(init_regcache_descr): Remove sizeof_raw_register_valid_p
overallocate hack.
(regcache_xmalloc): Rename to ...
(regcache_xmalloc_1): ... this.  Add `readonly_p' parameter.
Allocate the regcache type accordingly.
(regcache_xmalloc): New as wrapper around regcache_xmalloc_1.
(regcache_xfree): Asser the source is also readonly.  Copy sizeof
cooked registers, not raw.
(regcache_dup_no_passthrough): Delete.
(get_thread_arch_regcache): Use regcache_xmalloc_1.
* h8300-tdep.c (h8300_push_dummy_call): Tweak comment to not
mention obsolete write_register_bytes.
* regcache.h (regcache_dup_no_passthrough): Delete declaration.

13 years ago Stop remote_read_bytes from handling partial reads itself.
palves [Tue, 25 Jan 2011 20:53:59 +0000 (20:53 +0000)]
Stop remote_read_bytes from handling partial reads itself.

* remote-fileio.c: Include target.h.
(remote_fileio_write_bytes): Delete.
(remote_fileio_func_open, remote_fileio_func_write)
(remote_fileio_func_rename, remote_fileio_func_unlink): Use
target_read_memory.
(remote_fileio_func_stat): Use target_read_memory and
target_write_memory.
(remote_fileio_func_gettimeofday): Use target_write_memory.
(remote_fileio_func_system): Use target_read_memory.
* remote.c (remote_write_bytes): Make it static.
(remote_read_bytes): Don't handle partial reads here.
* remote.h (remote_read_bytes): Delete declaration.

13 years ago2011-01-25 Pedro Alves <pedro@codesourcery.com>
palves [Tue, 25 Jan 2011 19:09:19 +0000 (19:09 +0000)]
2011-01-25  Pedro Alves  <pedro@codesourcery.com>

* server.h (decode_xfer_write): Change prototype.
* remote-utils.c (decode_xfer_write): Remove `annex' parameter,
and don't extract the annex here.
* server.c (decode_xfer_read): Remove `annex' parameter,
and don't extract the annex here.
(decode_xfer): New.
(struct qxfer): New.
(handle_qxfer_auxv, handle_qxfer_features, handle_qxfer_libraries)
(handle_qxfer_osdata, handle_qxfer_siginfo, handle_qxfer_spu)
(handle_qxfer_statictrace): New functions, abstracted out from
handle_query, and made to use the struct qxfer interface.
(handle_threads_qxfer_proper): Rename to ...
(handle_qxfer_threads_proper): ... this.
(handle_threads_qxfer): Rename to ...
(handle_qxfer_threads): ... this.  Adjust.
(qxfer_packets): New array.
(handle_qxfer): New function.
(handle_query): Use handle_qxfer.

13 years ago Simplify XML parsing a bit.
palves [Tue, 25 Jan 2011 18:49:58 +0000 (18:49 +0000)]
Simplify XML parsing a bit.

* xml-support.h (gdb_xml_parse_quick): Declare.
* xml-support.c (gdb_xml_create_parser_and_cleanup_1): Renamed
from gdb_xml_create_parser_and_cleanup, and added `old_chain'
parameter.
(gdb_xml_create_parser_and_cleanup): Reimplement on top of
gdb_xml_create_parser_and_cleanup_1.
(gdb_xml_parse_quick): New.
* memory-map.c (parse_memory_map): Use gdb_xml_parse_quick.
* osdata.c (osdata_parse): Ditto.
* remote.c (remote_threads_info): Ditto.
* solib-target.c (solib_target_parse_libraries): Ditto.
* xml-syscall.c (syscall_parse_xml): Ditto.
* xml-tdesc.c (tdesc_parse_xml): Ditto.

13 years ago * options.h (class General_options): Accept
ian [Tue, 25 Jan 2011 15:08:47 +0000 (15:08 +0000)]
* options.h (class General_options): Accept
--no-detect-odr-violations.

13 years ago*** empty log message ***
gdbadmin [Tue, 25 Jan 2011 09:00:32 +0000 (09:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Tue, 25 Jan 2011 08:00:05 +0000 (08:00 +0000)]
daily update

13 years ago * version.cc (version_string): Bump to 1.11.
ian [Tue, 25 Jan 2011 07:27:55 +0000 (07:27 +0000)]
* version.cc (version_string): Bump to 1.11.

13 years ago * plugin.cc (class Plugin_rescan): Define new class.
ian [Tue, 25 Jan 2011 06:48:39 +0000 (06:48 +0000)]
* plugin.cc (class Plugin_rescan): Define new class.
(Plugin_manager::claim_file): Set any_claimed_.
(Plugin_manager::save_archive): New function.
(Plugin_manager::save_input_group): New function.
(Plugin_manager::all_symbols_read): Create Plugin_rescan task if
necessary.
(Plugin_manager::new_undefined_symbol): New function.
(Plugin_manager::rescan): New function.
(Plugin_manager::rescannable_defines): New function.
(Plugin_manager::add_input_file): Set any_added_.
* plugin.h (class Plugin_manager): define new fields rescannable_,
undefined_symbols_, any_claimed_, and any_added_.  Declare
Plugin_rescan as friend.  Declare new functions.
(Plugin_manager::Rescannable): Define type.
(Plugin_manager::Rescannable_list): Define type.
(Plugin_manager::Undefined_symbol_list): Define type.
(Plugin_manager::Plugin_manager): Initialize new fields.
* archive.cc (Archive::defines_symbol): New function.
(Add_archive_symbols::run): Pass archive to plugins if any.
* archive.h (class Archive): Declare defines_symbol.
* readsyms.cc (Input_group::~Input_group): New function.
(Finish_group::run): Pass input_group to plugins if any.
* readsyms.h (class Input_group): Declare destructor.
* symtab.cc (add_from_object): Pass undefined symbol to plugins if
any.

13 years ago * configure.tgt (mips*-*-elf): New; just like mips*-*-*, but
kevinb [Tue, 25 Jan 2011 06:34:18 +0000 (06:34 +0000)]
* configure.tgt (mips*-*-elf): New; just like mips*-*-*, but
with remote-mips.o added to gdb_target_obs.
* Makefile.in (ALL_TARGET_OBS): Add remote-mips.o.

13 years ago * ada-valprint.c (val_print_packed_array_elements): Pass the
palves [Tue, 25 Jan 2011 06:28:11 +0000 (06:28 +0000)]
* ada-valprint.c (val_print_packed_array_elements): Pass the
correct struct value to val_print.
(ada_val_print_1): Ditto.

13 years ago2011-01-24 Pedro Alves <pedro@codesourcery.com>
palves [Tue, 25 Jan 2011 03:54:13 +0000 (03:54 +0000)]
2011-01-24  Pedro Alves  <pedro@codesourcery.com>

Don't lose embedded_offset in printing routines throughout.

gdb/
* valprint.h (val_print_array_elements): Change prototype.
* valprint.c (val_print_array_elements): Add `embedded_offset'
parameter, and adjust to pass it down to val_print, while passing
`valaddr' or `address' unmodified.  Take embedded_offset into
account when checking repetitions.
* c-valprint.c (c_val_print): Pass embedded_offset to
val_print_array_elements instead of adjusting `valaddr' and
`address'.
* m2-valprint.c (m2_print_array_contents, m2_val_print): Pass
embedded_offset to val_print_array_elements instead of adjusting
`valaddr'.
* p-lang.h (pascal_object_print_value_fields): Adjust prototype.
* p-valprint.c (pascal_val_print): Pass embedded_offset to
val_print_array_elements and pascal_object_print_value_fields
instead of adjusting `valaddr'.
(pascal_object_print_value_fields): Add `offset' parameter, and
adjust to use it.
(pascal_object_print_value): Add `offset' parameter, and adjust to
use it.
(pascal_object_print_static_field): Use
value_contents_for_printing/value_embedded_offset, rather than
value_contents.
* ada-valprint.c (val_print_packed_array_elements): Add `offset'
parameter, and adjust to use it.  Use
value_contents_for_printing/value_embedded_offset, rather than
value_contents.
(ada_val_print): Rename `valaddr0' parameter to `valaddr'.
(ada_val_print_array): Add `offset' parameter, and adjust to use
it.
(ada_val_print_1): Rename `valaddr0' parameter to `valaddr', and
`embedded_offset' to `offset'.  Don't re-adjust `valaddr'.
Instead work with offsets.  Use
value_contents_for_printing/value_embedded_offset, rather than
value_contents.  Change `defer_val_int' local type to CORE_ADDR,
and use value_from_pointer to extract a target pointer, rather
than value_from_longest.
(print_variant_part): Add `offset' parameter.  Replace
`outer_valaddr' parameter by a new `outer_offset' parameter.
Don't re-adjust `valaddr'.  Instead pass down adjusted offsets.
(ada_value_print): Use
value_contents_for_printing/value_embedded_offset, rather than
value_contents.
(print_record): Add `offset' parameter, and adjust to pass it
down.
(print_field_values): Add `offset' parameter.  Replace
`outer_valaddr' parameter by a new `outer_offset' parameter.
Don't re-adjust `valaddr'.  Instead pass down adjusted offsets.
Use value_contents_for_printing/value_embedded_offset, rather than
value_contents.
* d-valprint.c (dynamic_array_type): Use
value_contents_for_printing/value_embedded_offset, rather than
value_contents.
* jv-valprint.c (java_print_value_fields): Add `offset' parameter.
Don't re-adjust `valaddr'.  Instead pass down adjusted offsets.
(java_print_value_fields): Take `offset' into account.  Don't
re-adjust `valaddr'.  Instead pass down adjusted offsets.
(java_val_print): Take `embedded_offset' into account.  Pass it to
java_print_value_fields.
* f-valprint.c (f77_print_array_1): Add `embedded_offset'
parameter.  Don't re-adjust `valaddr' or `address'.  Instead pass
down adjusted offsets.
(f77_print_array): Add `embedded_offset' parameter.  Pass it down.
(f_val_print): Take `embedded_offset' into account.

gdb/testsuite/
* gdb.base/printcmds.c (some_struct): New struct and instance.
* gdb.base/printcmds.exp (test_print_repeats_embedded_array): New
procedure.
<global scope>: Call it.

13 years ago * include/features.h (__STDC_ISO_10646__): Define. Add comment.
corinna [Tue, 25 Jan 2011 01:27:32 +0000 (01:27 +0000)]
* include/features.h (__STDC_ISO_10646__): Define.  Add comment.

13 years ago*** empty log message ***
gdbadmin [Mon, 24 Jan 2011 09:00:03 +0000 (09:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Mon, 24 Jan 2011 08:00:05 +0000 (08:00 +0000)]
daily update

13 years ago * ld-scripts/sane1.d, * ld-scripts/sane1.t: New test.
amodra [Sun, 23 Jan 2011 12:29:29 +0000 (12:29 +0000)]
* ld-scripts/sane1.d, * ld-scripts/sane1.t: New test.
* ld-scripts/expr.exp: Run it.

13 years ago*** empty log message ***
gdbadmin [Sun, 23 Jan 2011 09:00:02 +0000 (09:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Sun, 23 Jan 2011 08:00:05 +0000 (08:00 +0000)]
daily update

13 years agoAdd AC_PROG_CXX.
hjl [Sun, 23 Jan 2011 04:25:36 +0000 (04:25 +0000)]
Add AC_PROG_CXX.

2011-01-22  H.J. Lu  <hongjiu.lu@intel.com>

* Makefile.am (CXX): Removed.

* configure.in: Add AC_PROG_CXX.

* Makefile.in: Regenerated.
* configure: Likewise.

13 years agobfd/
rsandifo [Sat, 22 Jan 2011 19:16:28 +0000 (19:16 +0000)]
bfd/
* elfxx-mips.c (_bfd_mips_elf_merge_private_bfd_data): Ignore
common sections too.

ld/
* plugin.c (plugin_get_ir_dummy_bfd): Copy across the bfd's
private data and GP size.

13 years ago*** empty log message ***
gdbadmin [Sat, 22 Jan 2011 09:00:02 +0000 (09:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Sat, 22 Jan 2011 08:00:05 +0000 (08:00 +0000)]
daily update

13 years agomove handing of "set interactive-mode" to gdb_has_a_terminal
brobecke [Sat, 22 Jan 2011 03:56:39 +0000 (03:56 +0000)]
move handing of "set interactive-mode" to gdb_has_a_terminal

The real purpose of this setting is really to override what the debugger
would otherwise guess from checking the stdin settings.  So it seems
more natural to see this setting being handled inside gdb_has_a_terminal
rather than input_is_terminal (which checks for other things, such as
whether the input is stdin, for instance).

This patch also adjust the command help and the associated section in
the GDB Manual to be a little clearer about that.

gdb/ChangeLog:

        * inflow.c: Include "gdbcmd.h".
        (interactive_mode): New static global, moved here from top.c.
        (show_interactive_mode): New function, moved here from top.c.
        use gdb_has_a_terminal instead of input_from_terminal_p to
        determine the current mode.
        (gdb_has_a_terminal): Add handling of the "iteractive-mode"
        setting.
        (_initialize_inflow): Add the "set/show interactive-mode"
        commands.  Moved here from top.c, after having adjusted slightly
        the help text.
        * top.c (interactive_mode, show_interactive_mode): Delete, moved
        to inflow.c.
        (input_from_terminal_p): Remove handling of "interactive-mode"
        setting, moved to infow.c.
        (init_main): Remove creation of the "set/show interactive-mode"
        commands, moved to inflow.c.

gdb/doc/ChangeLog:

        * gdb.texinfo (Other Misc Settings): Rework part of the
        documentation of the "set interactive mode" command.

13 years agogdb/testsuite/ChangeLog
kwerner [Fri, 21 Jan 2011 23:05:51 +0000 (23:05 +0000)]
gdb/testsuite/ChangeLog

2011-01-21  Ken Werner  <ken.werner@de.ibm.com>

        * lib/opencl.exp (skip_opencl_tests): Add missing compile_flags
        argument to the gdb_compile_opencl_hostapp call.

13 years agoSync toplevel configure from GCC
schwab [Fri, 21 Jan 2011 22:29:46 +0000 (22:29 +0000)]
Sync toplevel configure from GCC

2011-01-21  Andreas Schwab  <schwab@redhat.com>

* configure.ac: Use AS_HELP_STRING throughout.
* configure: Regenerate.

2011-01-18  Jie Zhang  <jie.zhang@analog.com>

* configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
* configure: Regenerate.

13 years ago * ldexp.c (fold_binary): Set result section for arithmetic and
amodra [Fri, 21 Jan 2011 22:18:19 +0000 (22:18 +0000)]
* ldexp.c (fold_binary): Set result section for arithmetic and
logical operations to NULL when both operands are in same section.
* ld.texinfo (Expression Section): Describe this.

13 years ago * syscalls.cc (rename): Fix permission problem with symlinks on NFS.
corinna [Fri, 21 Jan 2011 22:12:59 +0000 (22:12 +0000)]
* syscalls.cc (rename): Fix permission problem with symlinks on NFS.
Rework how NtOpenFile gets called to make it more readable.  Change
comment.

13 years ago * ppc-opc.c (NON32, NO371): Remove PPC_OPCODE_PPCPS.
amodra [Fri, 21 Jan 2011 09:53:10 +0000 (09:53 +0000)]
* ppc-opc.c (NON32, NO371): Remove PPC_OPCODE_PPCPS.

13 years ago*** empty log message ***
gdbadmin [Fri, 21 Jan 2011 09:00:33 +0000 (09:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Fri, 21 Jan 2011 08:00:04 +0000 (08:00 +0000)]
daily update

13 years ago PR gas/12384
nickc [Thu, 20 Jan 2011 21:49:04 +0000 (21:49 +0000)]
PR gas/12384
* config/tc-h8300.c (constant_fits_width_p): Use correct type for
comparison.

13 years ago * exec.cc: Include pinfo.h.
corinna [Thu, 20 Jan 2011 20:09:21 +0000 (20:09 +0000)]
* exec.cc: Include pinfo.h.
* winf.h: Move definitions of _P_PATH_TYPE_EXEC and _P_MODE from here...
* pinfo.h: ...to here.
(_P_PATH_TYPE_EXEC): Redefine to be bigger than _P_SYSTEM.
(_P_MODE): Redefine so as not to mask out _P_SYSTEM.
* spawn.cc (spawnlp): Add _P_PATH_TYPE_EXEC flag in call to spawnve.
(spawnlpe): Ditto.
(spawnvp): Ditto.

13 years ago*** empty log message ***
gdbadmin [Thu, 20 Jan 2011 09:00:32 +0000 (09:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Thu, 20 Jan 2011 08:00:05 +0000 (08:00 +0000)]
daily update

13 years ago[NEWS/ia64-hpux] Add entry for native ia64-hpux support
brobecke [Thu, 20 Jan 2011 05:41:10 +0000 (05:41 +0000)]
[NEWS/ia64-hpux] Add entry for native ia64-hpux support

gdb/ChangeLog:

        * NEWS: Add entry for native ia64-hpux support.

13 years ago2011-01-19 Yao Qi <yao@codesourcery.com>
qiyao [Thu, 20 Jan 2011 05:38:41 +0000 (05:38 +0000)]
2011-01-19  Yao Qi  <yao@codesourcery.com>

* lib/dwarf.exp (dwarf2_support): Change supported targets to a
positve list.

13 years ago2011-01-19 Yao Qi <yao@codesourcery.com>
qiyao [Thu, 20 Jan 2011 05:26:08 +0000 (05:26 +0000)]
2011-01-19  Yao Qi  <yao@codesourcery.com>

* gdb.asm/asm-source.exp: Replace ARM target triplet with a
canonical form.
Remove "xscale-*-*"
* gdb.xml/tdesc-regs.exp: Likewise.
* gdb.python/py-section-script.exp: Replace ARM target triplet
with canonical form.
Match arm*-*-symbianelf*.
* gdb.base/dup-sect.exp: Likewise.
* lib/dwarf.exp: New.
* gdb.dwarf2/callframecfa.exp: Check dwarf2 support by routine
dwarf2_support.
* gdb.dwarf2/dup-psym.exp: Likewise.
* gdb.dwarf2/dw2-ada-ffffffff.exp: Likewise.
* gdb.dwarf2/dw2-anonymous-func.exp: Likewise.
* gdb.dwarf2/dw2-bad-parameter-type.exp: Likewise.
* gdb.dwarf2/dw2-basic.exp: Likewise.
* gdb.dwarf2/dw2-compressed.exp: Likewise.
* gdb.dwarf2/dw2-const.exp: Likewise.
* gdb.dwarf2/dw2-cp-infcall-ref-static.exp: Likewise.
* gdb.dwarf2/dw2-cu-size.exp: Likewise.
* gdb.dwarf2/dw2-double-set-die-type.exp: Likewise.
* gdb.dwarf2/dw2-empty-namespace.exp: Likewise.
* gdb.dwarf2/dw2-filename.exp: Likewise.
* gdb.dwarf2/dw2-inheritance.exp: Likewise.
* gdb.dwarf2/dw2-inline-param.exp: Likewise.
* gdb.dwarf2/dw2-intercu.exp: Likewise.
* gdb.dwarf2/dw2-intermix.exp: Likewise.
* gdb.dwarf2/dw2-modula2-self-type.exp: Likewise.
* gdb.dwarf2/dw2-noloc.exp: Likewise.
* gdb.dwarf2/dw2-op-call.exp: Likewise.
* gdb.dwarf2/dw2-producer.exp: Likewise.
* gdb.dwarf2/dw2-ranges.exp: Likewise.
* gdb.dwarf2/dw2-ref-missing-frame.exp: Likewise.
* gdb.dwarf2/dw2-stack-boundary.exp: Likewise.
* gdb.dwarf2/dw2-strp.exp: Likewise.
* gdb.dwarf2/dw2-unresolved.exp: Likewise.
* gdb.dwarf2/implptr.exp: Likewise.
* gdb.dwarf2/mac-fileno.exp: Likewise.
* gdb.dwarf2/member-ptr-forwardref.exp: Likewise.
* gdb.dwarf2/pieces.exp: Likewise.
* gdb.dwarf2/pr11465.exp: Likewise.
* gdb.dwarf2/valop.exp: Likewise.
* gdb.dwarf2/watch-notconst.exp: Likewise.
* gdb.mi/dw2-ref-missing-frame.exp: Likewise.

13 years ago * readelf.c (process_object): Free dynamic_section after use.
macro [Thu, 20 Jan 2011 03:19:54 +0000 (03:19 +0000)]
* readelf.c (process_object): Free dynamic_section after use.

13 years agogdb
tromey [Thu, 20 Jan 2011 02:21:36 +0000 (02:21 +0000)]
gdb
PR mi/8618:
* thread.c (free_thread): Free 'name'.
(print_thread_info): Emit thread name.  Change CLI output.
(thread_name_command): New function.
(do_captured_thread_select): Emit newline.
(_initialize_thread): Register 'thread name' command.
* target.h (struct target_ops) <to_thread_name>: New field.
(target_thread_name): New macro.
* target.c (update_current_target): Handle to_thread_name.
* python/py-infthread.c (thpy_get_name): New function.
(thpy_set_name): Likewise.
(thread_object_getset): Add "name".
* linux-nat.c (linux_nat_thread_name): New function.
(linux_nat_add_target): Set to_thread_name.
* gdbthread.h (struct thread_info) <name>: New field.
gdb/doc
* gdb.texinfo (Threads): Document thread name output and `thread
name' command.
(Threads In Python): Document Thread.name attribute.
(GDB/MI Thread Commands): Document thread attributes.
gdb/testsuite
* gdb.python/py-infthread.exp: Add thread tests.

13 years ago * spawn.cc (av::fixup): Reenable #! handling for all exec functions.
corinna [Wed, 19 Jan 2011 23:59:10 +0000 (23:59 +0000)]
* spawn.cc (av::fixup): Reenable #! handling for all exec functions.
Return ENOEXEC in !p_type_exec case only for unrecognized files.
Fix comment formatting.

13 years ago * exec.cc (execlp): Add missing _P_PATH_TYPE_EXEC flag in call to
corinna [Wed, 19 Jan 2011 19:30:39 +0000 (19:30 +0000)]
* exec.cc (execlp): Add missing _P_PATH_TYPE_EXEC flag in call to
spawnve.

13 years ago * exec.cc: Rearrange functions in alphabetical order.
corinna [Wed, 19 Jan 2011 19:28:39 +0000 (19:28 +0000)]
* exec.cc: Rearrange functions in alphabetical order.
(_execve): Drop temporary define and drop export alias.
(execl): Call spawnve.
(execle): New function.
(execlp): New function.
(execv): Call spawnve.
(execve): Drop converting NULL envp to emtpy envp.
(execvp): Call spawnve.
(execvpe): Drop converting NULL envp to emtpy envp.  Call spawnve.
(fexecve): Call spawnve.
* spawn.cc (spawnve): Convert NULL envp to emtpy envp.  Remove outdated
comment.
(spawnlp): Call spawnve.
(spawnlpe): Ditto.
(spawnvp): Ditto.
(spawnvpe): Fix formatting.

13 years ago * exec.cc (strccpy): Move function from here...
corinna [Wed, 19 Jan 2011 18:41:53 +0000 (18:41 +0000)]
* exec.cc (strccpy): Move function from here...
* strfuncs.cc (strccpy): ...to here.
* string.h (strccpy): Declare.
* winsup.h (strccpy): Drop declaration.

13 years ago * errno.cc (errmap): Add error codes for invalid binaries.
corinna [Wed, 19 Jan 2011 18:15:16 +0000 (18:15 +0000)]
* errno.cc (errmap): Add error codes for invalid binaries.
* exec.cc (execvp): Call spawnve with _P_PATH_TYPE_EXEC flag
from here.
(execvpe): Ditto.
* spawn.cc (spawn_guts): Filter _P_PATH_TYPE_EXEC from mode and
store in p_type_exec.  Call av::fixup with addtional p_type_exec
argument.
(spawnve): Check for filtered mode.
(spawnvpe): Add _P_PATH_TYPE_EXEC flag when calling spawnve.
(av::fixup): Accept additional bool parameter p_type_exec.  Only check
for script if p_type_exec is true.
* winf.h (_P_PATH_TYPE_EXEC): Define.
(_P_MODE): Define.
(av::fixup): Declare with additional bool parameter.

13 years agoDon't compress debug sections smaller than 32 bytes.
hjl [Wed, 19 Jan 2011 09:24:21 +0000 (09:24 +0000)]
Don't compress debug sections smaller than 32 bytes.

2011-01-18  H.J. Lu  <hongjiu.lu@intel.com>

* write.c (compress_debug): Return if section size is small than
32 byte.

13 years ago*** empty log message ***
gdbadmin [Wed, 19 Jan 2011 09:00:02 +0000 (09:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Wed, 19 Jan 2011 08:00:05 +0000 (08:00 +0000)]
daily update

13 years agoDon't undefine elf_backend_static_tls_alignment twice.
hjl [Wed, 19 Jan 2011 05:45:05 +0000 (05:45 +0000)]
Don't undefine elf_backend_static_tls_alignment twice.

13 years agoUndo Solaris damages in elf64-x86-64.c.
hjl [Wed, 19 Jan 2011 05:41:07 +0000 (05:41 +0000)]
Undo Solaris damages in elf64-x86-64.c.

bfd/

2011-01-18  H.J. Lu  <hongjiu.lu@intel.com>

* elf64-x86-64.c (elf_backend_static_tls_alignment): Undefine
after Solaris target.
(elf_backend_want_plt_sym): Redefine to 0 after Solaris target.

ld/testsuite/

2011-01-18  H.J. Lu  <hongjiu.lu@intel.com>

* ld-x86-64/ilp32-4.d: Updated.

13 years agoDon't compress empty debug sections.
hjl [Wed, 19 Jan 2011 03:55:58 +0000 (03:55 +0000)]
Don't compress empty debug sections.

gas/

2011-01-18  H.J. Lu  <hongjiu.lu@intel.com>

PR gas/12409
* write.c (compress_debug): Return if section size is 0.

gas/testsuite/

2011-01-18  H.J. Lu  <hongjiu.lu@intel.com>

PR gas/12409
* gas/elf/dwarf2-4.d: New.
* gas/elf/dwarf2-4.s: Likewise.

13 years agoReset dump_sects after processing each archive member.
hjl [Wed, 19 Jan 2011 02:43:56 +0000 (02:43 +0000)]
Reset dump_sects after processing each archive member.

2011-01-18  H.J. Lu  <hongjiu.lu@intel.com>

PR binutils/12408
* readelf.c (process_archive): Free and reset dump_sects
after processing each archive member.

13 years agoProperly sign-extend byte.
hjl [Wed, 19 Jan 2011 02:08:11 +0000 (02:08 +0000)]
Properly sign-extend byte.

gas/testsuite/

2011-01-18  H.J. Lu  <hongjiu.lu@intel.com>

* gas/i386/intel.d: Updated.
* gas/i386/opcode-intel.d: Likewise.
* gas/i386/opcode-suffix.d: Likewise.
* gas/i386/opcode.d: Likewise.

opcodes/

2011-01-18  H.J. Lu  <hongjiu.lu@intel.com>

* i386-dis.c (sIbT): New.
(b_T_mode): Likewise.
(dis386): Replace sIb with sIbT on "pushT".
(x86_64_table): Replace sIb with Ib on "aam" and "aad".
(OP_sI): Handle b_T_mode.  Properly sign-extend byte.

13 years agoAdd tbm flag and TBM instruction pattern.
hjl [Wed, 19 Jan 2011 01:39:48 +0000 (01:39 +0000)]
Add tbm flag and TBM instruction pattern.

2011-01-18  H.J. Lu  <hongjiu.lu@intel.com>

* gas/i386/ilp32/x86-64-arch-2.d: Add tbm flag and TBM instruction
pattern.

13 years agofix printing of Ada wide characters on ppc-aix
brobecke [Wed, 19 Jan 2011 01:38:56 +0000 (01:38 +0000)]
fix printing of Ada wide characters on ppc-aix

Same problem as before: We were downcasting the character value from
int to unsigned char, which caused an overflow.  The reason why we did
not see this problem before is probably related to the fact that
we're using stabs on AIX and thus characters types are defined as
a TYPE_CODE_INT (or TYPE_CODE_RANGE?).

gdb/ChangeLog:

        * ada-valprint.c (ada_print_scalar): Remove unsigned char downcast.
        (ada_val_print_1): Likewise.

13 years ago[powerpc] breakpoint inserted past function end
brobecke [Wed, 19 Jan 2011 01:18:21 +0000 (01:18 +0000)]
[powerpc] breakpoint inserted past function end

On powerpc, the prologue scanner reads instruction after instruction,
and just skips instructions that do not affect a frame.  This means
that it does not stop if if finds and unexpected instruction (which
could possibly happen with optimization, I presume). To avoid scanning
too many instructions, it tries to establish an upper limit.

The upper limit is first computed using the debugging (line) info,
but if that fails, it falls back on an arbitrary 100 bytes (or 25
instructions).  The problem is that, if the function is shorter than
those 25 instructions, we run the risk of skipping the entire function
and returning a PC that's outside our function.

In the event where we can find a symbol for a given PC (and therefore
can determine function start and end addresses), but cannot find an
upper limit using skip_prologue_using_sal, then we can at least limit
make sure that the 25 instructions do not put us beyour our function.
If it does, then further reduce the upper-limit to the end of the function.

gdb/ChangeLog:

        * rs6000-tdep.c (rs6000_skip_prologue): Make sure that the prologue
        upper limit address is not greater than the function end address
        when the upper limit could not be computed using the debugging
        info.

13 years agoopcodes/
jkratoch [Tue, 18 Jan 2011 23:14:46 +0000 (23:14 +0000)]
opcodes/
* i386-init.h: Regenerated.
* i386-tbl.h: Regenerated.

13 years ago Fix compilation for mingw64.
nickc [Tue, 18 Jan 2011 23:13:42 +0000 (23:13 +0000)]
Fix compilation for mingw64.
* coffcode.h (coff_slurp_symbol_table): Add intptr_t intermediate
typecast to avoid warning.
* elf32-rx.c: Add "bfd_stdint.h" include required for int32_t type
usage.
* elfxx-ia64.c (elfNN_ia64_relax_br): Use intptr_t typeacast instead
of long for pointer to avoid warning.
(elfNN_ia64_relax_brl): Idem.
(elfNN_ia64_install_value): Idem.
* vms-alpha.c (_bfd_vms_slurp_etir): Idem.

13 years ago * config/tc-arm.c (arm_cpus): Add Faraday ARMv5TE compatible
nickc [Tue, 18 Jan 2011 23:10:38 +0000 (23:10 +0000)]
* config/tc-arm.c (arm_cpus): Add Faraday ARMv5TE compatible
cores: fa606te, fa616te, fmp626.  Modify the VFP of fa626te.
* doc/c-arm.texi (ARM Options): Add -mcpu={fa606te, fa616te,
fmp626} options.

13 years ago PR gas/12390
nickc [Tue, 18 Jan 2011 22:37:37 +0000 (22:37 +0000)]
PR gas/12390
* doc/all.texi: Add NS32K
* doc/as.texinfo: Remove target specific details of which
characters act as comment initiators and statement separators into
individual target specific files.
* doc/c-alpha.texi (Alpha-Chars): Document special behaviour of
the hash character at the start of a line.
* doc/c-arm.texi (ARM-Chars): Likewise.
* doc/c-avr.texi (AVR-Chars): Likewise.
* doc/c-d10v.texi (D10V-Chars): Likewise.
* doc/c-d30v.texi (D30V-Chars): Likewise.
* doc/c-mmix.texi (MMIX-Chars): Likewise.
* doc/c-s390.texi (s390 characters): Likewise.
* doc/c-sh.texi (SH-Chars): Likewise.
* doc/c-sh64.texi (SH64-Chars): Likewise.
* doc/c-sparc.texi (SPARC-Chars): Likewise.
* doc/c-tic6x.texi (TIC6X Syntax): Likewise.
* doc/c-xtensa.texi (Xtensa Syntax): Likewise.
* doc/c-z80.texi (Z80-Chars): Likewise.
* doc/c-z8k.texi (Z8000-Chars): Likewise.
* doc/c-pdp11.texi (PDP11-Syntax): Document line separator character.
* doc/c-arc.texi (ARC-Chars): Fill in this subsection.
* doc/c-bfin.texi (Blackfin Syntax): Document line comment and
line separator characters.
* doc/c-cr16.texi (CR16 Syntax): Likewise.
* doc/c-i386.texi (i386-Chars): Likewise.
* doc/c-i860.texi (i860-Chars): Likewise.
* doc/c-i960.texi (i960-Chars): Likewise.
* doc/c-ip2k.texi (IP2K-Chars): Likewise.
* doc/c-lm32.texi (LM32-Chars): likewise.
* doc/c-m32c.texi (M32C-Chars): Likewise.
* doc/c-m68hc11.texi (M68HC11-syntax): Likewise.
* doc/c-m68k.texi (M68K-Chars): Likewise.
* doc/c-microblaze.texi (MicroBlaze-Chars): Likewise.
* doc/c-msp430.texi (MSP430-Chars): Likewise.
* doc/c-mt.texi (MT-Chars): Likewise.
* doc/c-ns32k.texi (NS32K-Chars): Likewise.
* doc/c-pj.texi (PJ-Chars): Likewise.
* doc/c-ppc.texi (PowerPC-Chars): Likewise.
* doc/c-rx.texi (RX-Chars): Likewise.
* doc/c-score.texi (SCORE-Chars): Likewise.
* doc/c-tic54x.texi (TIC54X-Chars): Likewise.
* doc/c-v850.texi (V850-Chars): Likewise.
* doc/c-vax.texi (VAX-Chars): Likewise.
* doc/c-xc16x.texi (xc16x-Chars): Likewise.

13 years ago*** empty log message ***
gdbadmin [Tue, 18 Jan 2011 09:00:03 +0000 (09:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Tue, 18 Jan 2011 08:00:05 +0000 (08:00 +0000)]
daily update

13 years agoAdd TBM testsuite files missing from last commit.
qneill [Tue, 18 Jan 2011 07:17:16 +0000 (07:17 +0000)]
Add TBM testsuite files missing from last commit.

13 years agoAdd support for TBM instructions.
qneill [Tue, 18 Jan 2011 03:40:28 +0000 (03:40 +0000)]
Add support for TBM instructions.

gas/

2011-01-17  Quentin Neill  <quentin.neill@amd.com>

* config/tc-i386.c (cpu_arch): Add CPU_TBM_FLAGS.

* doc/c-i386.texi (i386-TBM): New section.

opcodes/

2011-01-17  Quentin Neill  <quentin.neill@amd.com>

* i386-dis.c (REG_XOP_TBM_01): New.
(REG_XOP_TBM_02): New.
(reg_table): Add REG_XOP_TBM_01 and REG_XOP_TBM_02 tables.
(xop_table): Redirect to REG_XOP_TBM_01 and REG_XOP_TBM_02
entries, and add bextr instruction.

* i386-gen.c (cpu_flag_init): Add CPU_TBM_FLAGS, CpuTBM.
(cpu_flags): Add CpuTBM.

* i386-opc.h (CpuTBM) New.
(i386_cpu_flags): Add bit cputbm.

* i386-opc.tbl: Add bextr, blcfill, blci, blcic, blcmsk,
blcs, blsfill, blsic, t1mskc, and tzmsk.

* i386-init.h: Regenerated.
* i386-tbl.h: Regenerated

gas/testsuite

2011-01-17  Quentin Neill  <quentin.neill@amd.com>

* gas/i386/tbm.s: New.
* gas/i386/tbm.d: New.
* gas/i386/tbm-intel.d: New.
* gas/i386/x86-64-tbm.s: New.
* gas/i386/x86-64-tbm.d: New.
* gas/i386/x86-64-tbm-intel.d: New.
* gas/i386/arch-10.d: Add tbm flag and TBM instruction pattern.
* gas/i386/arch-10.s: Add a TBM instruction.
* gas/i386/arch-10-1.l: Add TBM instruction pattern.
* gas/i386/arch-10-2.l: Likewise.
* gas/i386/arch-10-3.l: Likewise.
* gas/i386/arch-10-4.l: Likewise.
* gas/i386/x86-64-arch-2.s: Likewise.
* gas/i386/x86-64-arch-2.d: Likewise.

13 years ago * cli/cli-cmds.c (apropos_command): Free the compiled regex. Use
tromey [Tue, 18 Jan 2011 01:50:39 +0000 (01:50 +0000)]
* cli/cli-cmds.c (apropos_command): Free the compiled regex.  Use
get_regcomp_error.
* utils.c: Include gdb_regex.h.
(do_regfree_cleanup): New function.
(make_regfree_cleanup): Likewise.
(get_regcomp_error): Likewise.
* gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Declare.

13 years agobfd/
rsandifo [Tue, 18 Jan 2011 01:36:43 +0000 (01:36 +0000)]
bfd/
* elf32-arm.c (elf32_arm_check_relocs): Check needs_plt rather than
h->needs_plt when deciding whether to record a possible dynamic reloc.

ld/testsuite/
* ld-arm/arm-rel32.s, ld-arm/arm-rel32.d: New testcase.
* ld-arm/arm-elf.exp: Run it.

13 years agobfd/
rsandifo [Tue, 18 Jan 2011 01:36:13 +0000 (01:36 +0000)]
bfd/
* elf32-arm.c (elf32_arm_gc_sweep_hook): Remove all registered
dynamic relocs for the removed section.

ld/testsuite/
* ld-arm/gc-thumb-lib.s, ld-arm/gc-thumb.s,
ld-arm/gc-thumb.d: New test.
* ld-arm/arm-elf.exp: Run it.

13 years ago * cli/cli-cmds.c (apropos_command): Fix formatting. Don't call
tromey [Tue, 18 Jan 2011 01:20:51 +0000 (01:20 +0000)]
* cli/cli-cmds.c (apropos_command): Fix formatting.  Don't call
re_compile_fastmap.

13 years ago * fhandler_proc.cc (format_proc_partitions): Fix compiler warning.
corinna [Mon, 17 Jan 2011 23:31:29 +0000 (23:31 +0000)]
* fhandler_proc.cc (format_proc_partitions): Fix compiler warning.

13 years ago * path.cc (path_conv::check): Don't follow reparse point symlinks if
corinna [Mon, 17 Jan 2011 23:19:39 +0000 (23:19 +0000)]
* path.cc (path_conv::check): Don't follow reparse point symlinks if
PC_SYM_NOFOLLOW_REP flag is set.
(cygwin_conv_path): Set PC_SYM_NOFOLLOW_REP flag when converting from
POSIX to Win32.
* path.h (enum pathconv_arg): Define PC_SYM_NOFOLLOW_REP flag.

13 years ago * fhandler_proc.cc (proc_tab_cmp): Fix typo in comment.
corinna [Mon, 17 Jan 2011 22:38:05 +0000 (22:38 +0000)]
* fhandler_proc.cc (proc_tab_cmp): Fix typo in comment.
(fhandler_proc::fill_filebuf): Handle return value of 0 from format
function as error.
(format_proc_stat): Set errno when returning 0 size.
(format_proc_partitions): Rewrite method to fetch partition info.

13 years ago * p-exp.y (intvar): New static variable, used to set CURRENT_TYPE
muller [Mon, 17 Jan 2011 19:34:49 +0000 (19:34 +0000)]
* p-exp.y (intvar): New static variable, used to set CURRENT_TYPE
for internal variables.
(last_was_structop): New static variable.
(COMPLETE): New token.
(field_exp): New rule to group all '.' suffix handling.
Add mark_struct_expression calls when approriate to be able
to correctly find fields for completion.
(yylex): Adapt to handle field completion and set INTVAR when
required.

13 years ago*** empty log message ***
gdbadmin [Mon, 17 Jan 2011 09:00:33 +0000 (09:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Mon, 17 Jan 2011 08:00:06 +0000 (08:00 +0000)]
daily update

13 years agoDisallow 64bit relocations in x32 mode.
hjl [Mon, 17 Jan 2011 02:06:11 +0000 (02:06 +0000)]
Disallow 64bit relocations in x32 mode.

gas/

2011-01-16  H.J. Lu  <hongjiu.lu@intel.com>

* config/tc-i386.c (disallow_64bit_disp): Renamed to ...
(disallow_64bit_reloc): This.
(md_assemble): Don't check movabs for x32 mode here.
(i386_target_format): Updated.
(tc_gen_reloc): Check if 64bit relocations are allowed.

gas/testsuite/

2011-01-16  H.J. Lu  <hongjiu.lu@intel.com>

* gas/i386/ilp32/immed64.s: New.
* gas/i386/ilp32/reloc64.s: Likewise.
* gas/i386/ilp32/x86-64-pcrel.s: Likewise.

* gas/i386/ilp32/inval.s: Add more tests.

* gas/i386/ilp32/immed64.d: Updated.
* gas/i386/ilp32/inval.l: Likewise.
* gas/i386/ilp32/reloc64.d: Likewise.
* gas/i386/ilp32/x86-64-pcrel.d: Likewise.

13 years ago*** empty log message ***
gdbadmin [Sun, 16 Jan 2011 09:00:33 +0000 (09:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Sun, 16 Jan 2011 08:00:05 +0000 (08:00 +0000)]
daily update

13 years agoUpdate ChangeLog.
hjl [Sun, 16 Jan 2011 02:25:30 +0000 (02:25 +0000)]
Update ChangeLog.

13 years agoCheck invalid x32 relocations.
hjl [Sun, 16 Jan 2011 00:49:46 +0000 (00:49 +0000)]
Check invalid x32 relocations.

2011-01-15  H.J. Lu  <hongjiu.lu@intel.com>

* elf64-x86-64.c (elf_x86_64_check_relocs): Check invalid x32
relocations.

13 years agoDon't allow movabs with relocation in x32 mode.
hjl [Sun, 16 Jan 2011 00:48:01 +0000 (00:48 +0000)]
Don't allow movabs with relocation in x32 mode.

gas/

2011-01-15  H.J. Lu  <hongjiu.lu@intel.com>

* config/tc-i386.c (disallow_64bit_disp): New.
(x86_elf_abi): Replace X86_64_LP64_ABI/X86_64_ILP32_ABI with
X86_64_ABI/X86_64_X32_ABI.
(md_assemble): Don't allow movabs with relocation in x32 mode.
(i386_target_format): Updated.

gas/testsuite/

2011-01-15  H.J. Lu  <hongjiu.lu@intel.com>

* gas/i386/ilp32/ilp32.exp: Run inval.

* gas/i386/ilp32/inval.l: New.
* gas/i386/ilp32/inval.s: Likewise.
* gas/i386/ilp32/x86-64.s: Likewise.

* gas/i386/ilp32/x86-64.d: Don't use ../x86_64.s.  Updated.

13 years ago * libc/include/sys/types.h (ulong): Add typedef.
corinna [Sat, 15 Jan 2011 18:26:15 +0000 (18:26 +0000)]
* libc/include/sys/types.h (ulong): Add typedef.

13 years agoReplace n32 with x32.
hjl [Sat, 15 Jan 2011 09:38:34 +0000 (09:38 +0000)]
Replace n32 with x32.

13 years ago*** empty log message ***
gdbadmin [Sat, 15 Jan 2011 09:00:03 +0000 (09:00 +0000)]
*** empty log message ***

13 years agoRename --n32 to --x32.
hjl [Sat, 15 Jan 2011 08:07:08 +0000 (08:07 +0000)]
Rename --n32 to --x32.

gas/

2011-01-14  H.J. Lu  <hongjiu.lu@intel.com>

* config/tc-i386.c (OPTION_N32): Renamed to ...
(OPTION_X32): This.
(md_longopts): Replace n32 with x32.
(md_parse_option): Updated.
(md_show_usage): Likewise.

* doc/c-i386.texi: Replace n32 with x32.

gas/testsuite/

2011-01-14  H.J. Lu  <hongjiu.lu@intel.com>

* gas/i386/ilp32/cfi/ilp32.exp: Replace --n32 with --x32.
* gas/i386/ilp32/elf/ilp32.exp: Likewise.
* gas/i386/ilp32/ilp32.exp: Likewise.
* gas/i386/ilp32/lns/ilp32.exp: Likewise.

ld/testsuite/

2011-01-14  H.J. Lu  <hongjiu.lu@intel.com>

* ld-x86-64/ilp32-1.d: Replace --n32 with --x32.
* ld-x86-64/ilp32-2.d: Likewise.
* ld-x86-64/ilp32-3.d: Likewise.
* ld-x86-64/ilp32-4.d: Likewise.
* ld-x86-64/ilp32-5.d: Likewise.
* ld-x86-64/x86-64.exp: Likewise.

13 years agodaily update
amodra [Sat, 15 Jan 2011 08:00:09 +0000 (08:00 +0000)]
daily update

13 years agoHandle R_X86_64_32 like R_X86_64_64 for ILP32.
hjl [Sat, 15 Jan 2011 07:48:10 +0000 (07:48 +0000)]
Handle R_X86_64_32 like R_X86_64_64 for ILP32.

bfd/

2011-01-14  H.J. Lu  <hongjiu.lu@intel.com>

* elf64-x86-64.c (elf_x86_64_link_hash_table): Add pointer_r_type.
(elf_x86_64_link_hash_table_create): Set pointer_r_type.
(elf_x86_64_check_relocs): Handle R_X86_64_32 like R_X86_64_64
for ILP32.  Remove ABI_64_P PIC check for R_X86_64_8,
R_X86_64_16, R_X86_64_32 and R_X86_64_32S.
(elf_x86_64_relocate_section):  Handle R_X86_64_32 like R_X86_64_64
for ILP32.

ld/testsuite/

2011-01-14  H.J. Lu  <hongjiu.lu@intel.com>

* ld-x86-64/ilp32-5.d: New.
* ld-x86-64/ilp32-5.s: Likewise.

* ld-x86-64/x86-64.exp: Run ilp32-5.

13 years ago2011-01-14 Yao Qi <yao@codesourcery.com>
qiyao [Sat, 15 Jan 2011 05:37:10 +0000 (05:37 +0000)]
2011-01-14  Yao Qi  <yao@codesourcery.com>

* arm-tdep.c (arm_register_reggroup_p): FPS register is in
save_reggroup, restore_reggroup and all_reggroup.

13 years agonew testcase printing wchar_t characters and strings
brobecke [Sat, 15 Jan 2011 04:33:37 +0000 (04:33 +0000)]
new testcase printing wchar_t characters and strings

gdb/testsuite/ChangeLog:

        * gdb.base/wchar.c, gdb.base/wchar.exp: New testcases.

13 years agonew testcase for Ada Wide Wide Characters and Strings
brobecke [Sat, 15 Jan 2011 04:33:19 +0000 (04:33 +0000)]
new testcase for Ada Wide Wide Characters and Strings

gdb/testsuite/ChangeLog:

        * gdb.ada/widewide: New testcase.

13 years agoFix printing of Wide_Character & Wide_Wide_Character entities.
brobecke [Sat, 15 Jan 2011 04:32:56 +0000 (04:32 +0000)]
Fix printing of Wide_Character & Wide_Wide_Character entities.

Wide_Characters and Wide_Wide_Characters are incorrectly printed.
Consider for instance:

    Medium : Wide_Character := Wide_Character'Val(16#dead#);

Trying to print the value of this variable yields:

    (gdb) p medium
    $1 = 57005 '["ad"]'

The integer value is correct (57005 = 0xdead), but the character
representation is not, it should be:

    $1 = 57005 '["dead"]'

Same for Wide_Wide_Characters.

There were two issues:
   (a) The first issue was in ada-valprint, where we were assuming
       that character types were 1 byte long;
   (b) The second problem was in c-valprint, where we were down-casting
       the integer value of the character to type `unsigned char',
       causing use to lose all but the lowest byte.

gdb/ChangeLog:

        * ada-valprint. (ada_printchar): Use the correct type length
        in call to ada_emit_char.
        * c-valprint.c (c_val_print): Remove cast in call to LA_PRINT_CHAR.

13 years ago * solib-som.h (hpux_major_release): Declare variable here.
muller [Sat, 15 Jan 2011 03:39:31 +0000 (03:39 +0000)]
* solib-som.h (hpux_major_release): Declare variable here.
* solib-som.c:  Remove <sys/utsname.h> header.
(DEFAULT_HPUX_MAJOR_RELEASE): New macro.
(hpux_major_release): Make global, change default value to
DEFAULT_HPUX_MAJOR_RELEASE.
(get_hpux_major_release): Simply return HPUX_MAJOR_RELEASE.
* hppa-hpux-nat.c: Add <sys/utsname.h> include.
Add "solib-som.h" header.
(set_hpux_major_release): New function.
(_initialize_hppa_hpux_nat): Call set_hpux_major_release.

13 years agogdb: extend Linux osabi match
vapier [Sat, 15 Jan 2011 03:16:34 +0000 (03:16 +0000)]
gdb: extend Linux osabi match

The current osabi default matching misses all *-uclinux tuples.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13 years agofix ARI warnings introduced by ia64-hpux patches
brobecke [Fri, 14 Jan 2011 22:53:01 +0000 (22:53 +0000)]
fix ARI warnings introduced by ia64-hpux patches

gdb/ChangeLog:

        * ia64-hpux-nat.c (ia64_hpux_fetch_register): Remove trailing
        new-line at end of warning message.
        (ia64_hpux_store_register): Remove trailing new-line at end of
        error message.
        * ia64-hpux-tdep.c: Rephrase comment.
        * solib-ia64-hpux.c (struct dld_info): Change type of field
        dld_flags from "long long" to ULONGEST.

13 years ago * target.h (deprecated_child_ops): Delete declaration.
palves [Fri, 14 Jan 2011 22:47:14 +0000 (22:47 +0000)]
* target.h (deprecated_child_ops): Delete declaration.
* target.c (deprecated_child_ops): Delete definition.

13 years ago gdb/
palves [Fri, 14 Jan 2011 22:43:16 +0000 (22:43 +0000)]
gdb/
* Makefile.in (hpux-thread.o): Delete rule.
* configure.ac: Don't check for HPUX DCE threads support.
* configure, config.in: Regenerate.
* hppa-hpux-nat.c (child_suppress_run): Delete.
(hppa_hpux_child_can_run): Delete.
(_initialize_hppa_hpux_nat): Don't override to_can_run.
* hpux-thread.c: Delete.

13 years ago * Makefile.in (hpux-thread.o): Delete rule.
palves [Fri, 14 Jan 2011 22:38:21 +0000 (22:38 +0000)]
* Makefile.in (hpux-thread.o): Delete rule.
* configure.ac: Don't check for HPUX DCE threads support.
* configure, config.in: Regenerate.
* hppa-hpux-nat.c (child_suppress_run): Delete.
(hppa_hpux_child_can_run): Delete.
(_initialize_hppa_hpux_nat): Don't override to_can_run.
* hpux-thread.c: Delete.