Doug Kwan [Fri, 19 Feb 2010 22:53:54 +0000 (22:53 +0000)]
 
2010-02-18  Doug Kwan  <dougkwan@google.com>
	* arm-reloc.def: Mark R_ARM_TLS_GD32, R_ARM_TLS_LDM32,
	R_ARM_TLS_LDO32, R_ARM_TLS_IE32 and R_ARM_TLS_LE32 are implemented.
	* arm.cc (Arm_relocation_functions): New forward declaration.
	(Target_arm::Target_arm): Initialize new data members
	got_mod_index_offset_ and tls_base_symbol_defined_.
	(Target_arm::Relocate::relocate_tls): New method.
	(Target_arm::optimize_tls_reloc, Target_arm::define_tls_base_symbol,
	 Target_arm::got_mod_index_entry, Target_arm::rel_tls_desc_section):
	New methods.
   	(Target_arm::Got_type): Add GOT_TYPE_TLS_NOFFSET, GOT_TYPE_OFFSET,
	GOT_TYPE_TLS_PAIR and GOT_TYPE_TLS_DESC.
	(Target_arm::got_mod_index_offset_,
	Target_arm::tls_base_symbol_defined_): New data members.
	(Target_arm::Scan::local, Target::Scan::global,
	Target_arm::Relocate::relocate): Handle 32-bit initial TLS
	relocations.
Tom Tromey [Fri, 19 Feb 2010 22:22:49 +0000 (22:22 +0000)]
 
	* p-typeprint.c (pascal_type_print_varspec_prefix): Update.
	* m2-typeprint.c (m2_print_type): Update.
	* gdbtypes.c (recursive_dump_type): Update.
	(copy_type_recursive): Update.
	* c-typeprint.c (c_type_print_varspec_prefix): Update.
	(c_type_print_base): Update.
	* gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG):
	Remove.
	(struct cplus_struct_type) <ntemplate_args>: Remove.
	<struct template_arg>: Remove.
	<is_dynamic>: Move earlier.
	(TYPE_TEMPLATE_ARGS): Remove.
	(TYPE_NTEMPLATE_ARGS): Remove.
	(TYPE_TEMPLATE_ARG): Remove.
Tom Tromey [Fri, 19 Feb 2010 20:22:03 +0000 (20:22 +0000)]
 
gdb
	PR c++/8693, PR c++/9496:
	* cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION.
	* c-exp.y (lex_one_token): Rename from yylex.  Don't call
	write_dollar_variable.  Don't try to classify NAME tokens.
	(token_and_value): New type.
	(token_fifo, popping, name_obstack): New globals.
	(classify_name): New function.
	(classify_inner_name): Likewise.
	(yylex): Likewise.
	(VARIABLE): Now has type sval.
	(exp : VARIABLE): Call write_dollar_variable.
	(qualified_name): Use TYPENAME, not typebase.  Add production for
	multiple "::" instances.
	(variable): Use name_not_typename.
	(qualified_type): Remove.
	(typebase): Update.
gdb/testsuite
	PR c++/8693, PR c++/9496:
	* gdb.cp/namespace.exp: Remove some setup_kfail calls.  Added
	regression tests.
Tom Tromey [Fri, 19 Feb 2010 19:14:38 +0000 (19:14 +0000)]
 
	* gdbint.texinfo (Getting Started): Fix @node.
	(Debugging GDB): Likewise.
Jan Kratochvil [Fri, 19 Feb 2010 19:14:18 +0000 (19:14 +0000)]
 
gdb/testsuite/
	Fix compatibility with m68k as.
	* gdb.dwarf2/member-ptr-forwardref.S: Use .data section.  Use .2byte.
	Use only /* comments */.
Ulrich Weigand [Fri, 19 Feb 2010 17:13:21 +0000 (17:13 +0000)]
 
testsuite/
	* configure.ac: Add gdb.multi/Makefile to AC_OUTPUT.
	* configure: Regenerate.
Jan Kratochvil [Fri, 19 Feb 2010 06:19:45 +0000 (06:19 +0000)]
 
gdb/
	* symfile.c (addr_info_make_relative): Extend comment.  Move SECT to
	a more inner block.  Initialize ADDR by LOWER_OFFSET only if it was
	found by bfd_get_section_by_name.
	* symfile.h (struct section_addr_info) <sectindex>: New comment.
H.J. Lu [Fri, 19 Feb 2010 05:07:50 +0000 (05:07 +0000)]
 
Don't set ELFOSABI_LINUX in dynamic ifunc-using executable.
bfd/
2010-02-18  H.J. Lu  <hongjiu.lu@intel.com>
	* elf32-i386.c (elf_i386_add_symbol_hook): Don't set
	has_ifunc_symbols if the symbol comes from a shared library.
	* elf32-ppc.c (ppc_elf_add_symbol_hook): Likewise.
	* elf32-sparc.c (elf32_sparc_add_symbol_hook): Likewise.
	* elf64-ppc.c (ppc64_elf_add_symbol_hook): Likewise.
	* elf64-sparc.c (elf64_sparc_add_symbol_hook): Likewise.
	* elf64-x86-64.c (elf64_x86_64_add_symbol_hook): Likewise.
ld/testsuite/
2010-02-18  H.J. Lu  <hongjiu.lu@intel.com>
	* ld-ifunc/ifunc.exp: Expect System V OSABI in dynamic
	ifunc-using executable.
Alan Modra [Fri, 19 Feb 2010 03:36:06 +0000 (03:36 +0000)]
 
	* configure.tgt: Whiltespace.  Sort moxie entry.
Alan Modra [Fri, 19 Feb 2010 02:59:06 +0000 (02:59 +0000)]
 
	* Makefile.am (eelf32_i960.c): Depend on ELF_GEN_DEPS, not ELF_DEPS.
	* Makefile.in: Regenerate.
Doug Kwan [Fri, 19 Feb 2010 02:16:41 +0000 (02:16 +0000)]
 
2010-02-18  Doug Kwan  <dougkwan@google.com>
	* arm.cc (Arm_relobj::find_linked_text_section): New method.
	(Arm_relobj::make_exidx_input_section): Pass section index of linked
	text section as a parameter becuase some broken tools may not set
	the link in section header.
	(Target_arm::has_got_section): New method.
	(Target_arm::scan_section_for_cortex_a8_stubs): Treat an input section
	without any mapping symbol as data only.  Remove warning.
	(Arm_relobj::do_read_synbols): If an EXIDX input section has no
	link in its section header, try to discover the link by inspecting the
	REL31 relocation at the beginning of the section.
	(Target_arm::Scan::check_non_pic): Report name of offending relocation
	in error message.
	(Target_arm::Scan::global): Treat any reference to the symbol
	_GLOBAL_OFFSET_TABLE_ as a GOT access.
Alan Modra [Fri, 19 Feb 2010 01:47:16 +0000 (01:47 +0000)]
 
bfd/
	* elf.c (_bfd_elf_fixup_group_sections): New function, split out from..
	(_bfd_elf_copy_private_header_data): ..here.
	* elflink.c (_bfd_elf_size_group_sections): New function.
	(bfd_elf_size_dynamic_sections): Call it.
	* elf-bfd.h (_bfd_elf_size_group_sections): Declare.
	(_bfd_elf_fixup_group_sections): Declare.
ld/
	* ldlang.c (unique_section_p): Add os param.  Allow group
	sections to match /DISCARD/.  Update all callers.
	* emultempl/genelf.em (gld${EMULATION_NAME}_before_allocation): New.
	(LDEMUL_BEFORE_ALLOCATION): Define.
ld/testsuite/
	* ld-elf/group.ld: Discard .dropme sections.
	* ld-elf/group10.d, * ld-elf/group10.s: New test.
Alan Modra [Fri, 19 Feb 2010 01:36:39 +0000 (01:36 +0000)]
 
	* readelf.c (get_group_flags): Return empty string when flags zero.
	Add space in other returned values.
	(process_section_groups): Adjust format string.
Joel Brobecker [Fri, 19 Feb 2010 00:35:53 +0000 (00:35 +0000)]
 
    * NEWS: Add new "[...] since 7.1" section.  Rename the "[...] since
        7.0 section" into "Changes in 7.1".
gdbadmin [Fri, 19 Feb 2010 00:21:15 +0000 (00:21 +0000)]
 
Record GDB 7.1 branch creation. Bump version number to 7.1.50.
20100219-cvs.
gdbadmin [Fri, 19 Feb 2010 00:00:02 +0000 (00:00 +0000)]
 
*** empty log message ***
Alan Modra [Thu, 18 Feb 2010 23:00:04 +0000 (23:00 +0000)]
 
daily update
Pedro Alves [Thu, 18 Feb 2010 19:17:00 +0000 (19:17 +0000)]
 
2010-02-18  Harald Koenig  <H.Koenig@science-computing.de>
	* mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'.
	* symfile.c (symfile_map_offsets_to_segments): Fix assertion.
Matthew Gretton-Dann [Thu, 18 Feb 2010 17:25:10 +0000 (17:25 +0000)]
 
   * ld-arm/attr-merge-6.attr: Add new test.  Missed off last commit.
Tom Tromey [Thu, 18 Feb 2010 16:36:47 +0000 (16:36 +0000)]
 
	* NEWS: Add Python API Improvements section.
Daniel Jacobowitz [Thu, 18 Feb 2010 16:04:32 +0000 (16:04 +0000)]
 
	* NEWS: Correct typo.
Daniel Jacobowitz [Thu, 18 Feb 2010 15:27:35 +0000 (15:27 +0000)]
 
	* gdb.python/py-type.exp: Check for Python support.
Matthew Gretton-Dann [Thu, 18 Feb 2010 10:56:28 +0000 (10:56 +0000)]
 
	* bfd/elf32-arm.c (elf32_arm_merge_eabi_attributes): Add support for
	merging Tag_DIV_use, Tag_MPextension_use, and
	Tag_MPextension_use_legacy tags.
	* binutils/readelf.c (arm_attr_tag_Advanced_SIMD_arch): Add
	description of newly permitted attribute values.
	(arm_attr_tag_Virtualization_use): Likewise.
	(arm_attr_tag_DIV_use): Add description of new attribute.
	(arm_attr_tag_MPextension_use_legacy): Likewise.
	* gas/config/tc-arm.c (arm_convert_symbolic_attribute):
	Add Tag_DIV_use.
	* gas/doc/c-arm.texi: Likewise.
	* gas/testsuite/gas/arm/attr-order.d: Fix test for new names for
	attribute values.
	* include/elf/arm.h (Tag_MPextension_use): Renumber.
	(Tag_DIV_use): Add.
	(Tag_MPextension_use_legacy): Likewise.
	* ld/testsuite/ld-arm/attr-merge-3.attr: Fix test for new attribute
	values.
	* ld/testsuite/ld-arm/attr-merge-3b.s: Likewise.
	* ld/testsuite/ld-arm/attr-merge-unknown-1.d: Fix test now that 42
	is a recognised attribute ID.
	* ld/testsuite/ld-arm/attr-merge-unknown-1.s: Likewise.
	* ld/testsuite/ld-arm/attr-merge-6.attr: New test.
	* ld/testsuite/ld-arm/attr-merge-6a.s: Likewise.
	* ld/testsuite/ld-arm/attr-merge-6b.s: Likewise.
	* ld/testsuite/ld-arm/attr-merge-7.attr: Likewise.
	* ld/testsuite/ld-arm/attr-merge-7a.s: Likewise.
	* ld/testsuite/ld-arm/attr-merge-7b.s: Likewise.
	* ld/testsuite/ld-arm/arm-elf.exp: Run the new tests.
Alan Modra [Thu, 18 Feb 2010 00:13:30 +0000 (00:13 +0000)]
 
	* binutils-all/group-5.s, * binutils-all/group-5.d: New test.
	* binutils-all/objcopy.exp: Run it.
Alan Modra [Thu, 18 Feb 2010 00:09:06 +0000 (00:09 +0000)]
 
	* elf.c (bfd_elf_set_group_contents): Revert accidental 2009-01-15
	commit.  Don't write zeros for removed group members.
	(_bfd_elf_copy_private_header_data): Adjust size of group section
	when group members are removed by objcopy.
gdbadmin [Thu, 18 Feb 2010 00:00:03 +0000 (00:00 +0000)]
 
*** empty log message ***
Pedro Alves [Wed, 17 Feb 2010 23:07:24 +0000 (23:07 +0000)]
 
	* lib/gdb.exp (build_id_debug_filename_get): Don't assume new
	`regsub' syntax available.
Alan Modra [Wed, 17 Feb 2010 23:00:04 +0000 (23:00 +0000)]
 
daily update
Pedro Alves [Wed, 17 Feb 2010 22:55:40 +0000 (22:55 +0000)]
 
	* gdb.base/shmain.c (main): Remove printf call.
	* gdb.base/sizeof.c (main): Cast return of sizeof to int.
	* gdb.base/unload.c (main): Make format of fprintf a string
	literal.  Add missing endlines to prints to stderr.
	* gdb.base/watchpoint-solib.c (open_shlib): Ditto.
Tom Tromey [Wed, 17 Feb 2010 22:25:05 +0000 (22:25 +0000)]
 
gdb
	* objfiles.c (gdb_bfd_ref): Handle abfd==NULL.
gdb/testsuite
	* gdb.java/jprint.java (jprint.props): New field.
	* gdb.java/jprint.exp (set_lang_java): Add regression test.
Pedro Alves [Wed, 17 Feb 2010 22:09:05 +0000 (22:09 +0000)]
 
Use tab, not spaces.
Pedro Alves [Wed, 17 Feb 2010 22:05:58 +0000 (22:05 +0000)]
 
    * gdb.base/charset.exp: Don't assume new `regsub' syntax
	available.
Jan Kratochvil [Wed, 17 Feb 2010 20:54:52 +0000 (20:54 +0000)]
 
gdb/
	* symfile.c (build_section_addr_info_from_objfile): Include sections
	only if they are SEC_ALLOC or SEC_LOAD.
H.J. Lu [Wed, 17 Feb 2010 20:47:08 +0000 (20:47 +0000)]
 
Use CORE_ADDR instead of ULONGEST on address.
2010-02-17  H.J. Lu  <hongjiu.lu@intel.com>
	PR shlibs/11293
	* solib-svr4.c (enable_break): Check size of CORE_ADDR instead
	of ULONGEST for address size.
Tom Tromey [Wed, 17 Feb 2010 20:08:24 +0000 (20:08 +0000)]
 
	* NEWS: Add C++ improvements section.
Ulrich Weigand [Wed, 17 Feb 2010 14:58:54 +0000 (14:58 +0000)]
 
	* python/python-internal.h [!WITH_THREAD] (PyGILState_Release,
	PyThreadState_Swap): Avoid "statement with no effect" warning.
Jan Kratochvil [Wed, 17 Feb 2010 11:37:23 +0000 (11:37 +0000)]
 
gdb/
	* solib-svr4.c (enable_break <target_auxv_search>): New variable
	addr_bit.  Adjust LOAD_ADDR sign for cross-arch inferiors.
Nick Clifton [Wed, 17 Feb 2010 11:02:54 +0000 (11:02 +0000)]
 
    * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
        the config.cache files found by the find command.
Tristan Gingold [Wed, 17 Feb 2010 10:39:10 +0000 (10:39 +0000)]
 
2010-02-17  Tristan Gingold  <gingold@adacore.com>
	    Petr HluzĂ<petr.hluzin@gmail.com>
	* avr-tdep.c (avr_scan_prologue): Convert an if statement to a
	gdb_assert.  Fix info->size for SIG prologue.
Tristan Gingold [Wed, 17 Feb 2010 10:12:48 +0000 (10:12 +0000)]
 
2010-02-17  Tristan Gingold  <gingold@adacore.com>
	* dmt.h, dst.h, eeom.h, egps.h, egsd.h, egst.h, egsy.h: New Files.
	* eiaf.h, eicp.h, eiha.h, eihd.h, eihi.h, eihs.h, eihvn.h: Ditto.
	* eisd.h, emh.h, eobjrec.h, esdf.h, esrf.h, etir.h, shl.h: Ditto.
Nick Clifton [Wed, 17 Feb 2010 10:05:51 +0000 (10:05 +0000)]
 
    PR 11238
        * Makefile.tpl (local-distclean): Also remove config.cache files in
        sub-directories as there may not be Makefiles present in the
        sub-directories.
        * Makefile.in: Regenerate.
        * configure.ac: Revert previous delta.
        * configure: Regenerate.
gdbadmin [Wed, 17 Feb 2010 00:00:03 +0000 (00:00 +0000)]
 
*** empty log message ***
Alan Modra [Tue, 16 Feb 2010 23:00:04 +0000 (23:00 +0000)]
 
daily update
Daniel Jacobowitz [Tue, 16 Feb 2010 21:26:48 +0000 (21:26 +0000)]
 
	gdb/testsuite/
	* gdb.xml/tdesc-arch.exp, gdb.xml/tdesc-regs.exp: Rewrite file
	creation to support remote host testing.
Daniel Jacobowitz [Tue, 16 Feb 2010 21:22:46 +0000 (21:22 +0000)]
 
	gdb/testsuite/
	* gdb.base/valgrind-db-attach.exp: Use unsupported instead of xfail.
	Recognize "command not found".
Daniel Jacobowitz [Tue, 16 Feb 2010 21:20:14 +0000 (21:20 +0000)]
 
	gdb/testsuite/
	* gdb.arch/thumb2-it.exp (test_it_break): Handle hardware
	single-stepping.
Daniel Jacobowitz [Tue, 16 Feb 2010 21:18:46 +0000 (21:18 +0000)]
 
	gdb/
	* infcmd.c (show_inferior_tty_command): Check for NULL.
	Correct output message.
Daniel Jacobowitz [Tue, 16 Feb 2010 21:13:10 +0000 (21:13 +0000)]
 
	* gdb.python/py-value.exp (test_value_in_inferior): Skip arg0 test
	if arguments are not supported.
Daniel Jacobowitz [Tue, 16 Feb 2010 21:09:32 +0000 (21:09 +0000)]
 
	gdb/testsuite/
	* gdb.cp/overload.exp: Allow foo::overload1arg's "this" pointer to
	be const or non-const.
Daniel Jacobowitz [Tue, 16 Feb 2010 21:08:10 +0000 (21:08 +0000)]
 
	gdb/testsuite/
	* gdb.mi/mi-break.exp (test_breakpoint_commands): Use
	mi_send_resuming_command to send -exec-continue.
Daniel Jacobowitz [Tue, 16 Feb 2010 20:51:51 +0000 (20:51 +0000)]
 
	gdb/
	* linespec.c (decode_line_1): Handle FILE:FUNCTION even if
	FUNCTION contains parentheses.  Improve removal of a trailing
	single quote.
	gdb/testsuite/
	* gdb.base/list.exp (test_list_filename_and_function): Add test
	with single quotes.
	* gdb.cp/overload.cc (intToChar): Rewrite onto one line for easy
	matching.
	* gdb.cp/overload.exp: Add tests with filename, function, and quotes.
	Add KFAIL'd tests for PR gdb/11289.
Daniel Jacobowitz [Tue, 16 Feb 2010 20:48:52 +0000 (20:48 +0000)]
 
	gdb/
	* gcore.c (do_bfd_delete_cleanup): New function.
	(gcore_command): Use it.  Discard the cleanup after success.
	(gcore_copy_callback): Delete dead code.
Daniel Jacobowitz [Tue, 16 Feb 2010 20:28:06 +0000 (20:28 +0000)]
 
	gdb/
	* symfile.c (addr_info_make_relative): Always use
	find_lowest_section.
Daniel Jacobowitz [Tue, 16 Feb 2010 20:23:43 +0000 (20:23 +0000)]
 
	gdb/testsuite/
	* gdb.cp/cpcompletion.exp: Specify source file name explicitly.
Daniel Jacobowitz [Tue, 16 Feb 2010 20:18:53 +0000 (20:18 +0000)]
 
	gdb/testsuite/
	* gdb.base/comp-dir/subdir/dummy.txt: New file.
	* gdb.base/completion.exp: Use comp-dir/subdir instead of creating
	a temporary directory.
Daniel Jacobowitz [Tue, 16 Feb 2010 20:13:14 +0000 (20:13 +0000)]
 
	gdb/testsuite/
	* gdb.base/charset.exp: Use a single regular expression to match
	show host-charset and show target-charset output.
Ramana Radhakrishnan [Tue, 16 Feb 2010 19:02:59 +0000 (19:02 +0000)]
 
2010-02-15  Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
	* ld-arm/jump-reloc-veneers-long.d: Correct testcase for
	  arm-none-eabi target.
	* ld-arm/jump-reloc-veneers-short1.d: Likewise
	* ld-arm/jump-reloc-veneers-short2.d: Likewise
Sami Wagiaalla [Tue, 16 Feb 2010 15:52:47 +0000 (15:52 +0000)]
 
2010-02-16  Sami Wagiaalla <swagiaal@redhat.com>
	* NEWS: Added entry for namespace fixes.
gdbadmin [Tue, 16 Feb 2010 00:00:03 +0000 (00:00 +0000)]
 
*** empty log message ***
Alan Modra [Mon, 15 Feb 2010 23:00:04 +0000 (23:00 +0000)]
 
daily update
Tom Tromey [Mon, 15 Feb 2010 20:48:57 +0000 (20:48 +0000)]
 
	* dwarf2read.c (guess_structure_name): Allocate name on the
	objfile obstack.
Tom Tromey [Mon, 15 Feb 2010 20:42:28 +0000 (20:42 +0000)]
 
	* c-typeprint.c (c_type_print_base): Reverse order of test.
Dave Korn [Mon, 15 Feb 2010 19:25:47 +0000 (19:25 +0000)]
 
bfd/ChangeLog:
	PR binutils/11280
	* configure.host (*-*-solaris2.11):  Add host define to select
	valid default code page for windres/windmc on solaris.
Jan Kratochvil [Mon, 15 Feb 2010 17:37:35 +0000 (17:37 +0000)]
 
gdb/
	* solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize.  Optionally
	initialize it from ELF BFD.  Extend the prelink condition by it.
Jan Kratochvil [Mon, 15 Feb 2010 17:35:50 +0000 (17:35 +0000)]
 
gdb/
	* defs.h (parse_pid_to_attach): New.
	* utils.c (parse_pid_to_attach): New.
	* darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
	* gnu-nat.c (gnu_attach): Likewise.
	* nto-procfs.c (procfs_attach): Likewise.
	* procfs.c (procfs_attach): Likewise.
	* windows-nat.c (windows_attach): Likewise.
	* inf-ptrace.c (inf_ptrace_attach): Likewise.  Remove variable dummy.
	* inf-ttrace.c (inf_ttrace_attach): Likewise.
	* remote.c (extended_remote_attach_1): Likewise.  New comment on getpid
	check.
gdb/testsuite/
	* gdb.base/attach.exp (attach to nonsense is prohibited): Make the
	"Illegal process-id" expect string more exact.
	(attach to digits-starting nonsense is prohibited): New.
Nick Clifton [Mon, 15 Feb 2010 10:53:35 +0000 (10:53 +0000)]
 
    PR 11238
        * configure.ac: Delete config.cache files in sub-directories when
        deleting Makefiles.
        * configure: Regenerate.
Nick Clifton [Mon, 15 Feb 2010 10:37:55 +0000 (10:37 +0000)]
 
Sync from gcc mainline.
Nick Clifton [Mon, 15 Feb 2010 10:09:39 +0000 (10:09 +0000)]
 
Updated Vietnamese translation.
gdbadmin [Mon, 15 Feb 2010 00:00:02 +0000 (00:00 +0000)]
 
*** empty log message ***
Alan Modra [Sun, 14 Feb 2010 23:00:05 +0000 (23:00 +0000)]
 
daily update
Andreas Schwab [Sun, 14 Feb 2010 10:00:46 +0000 (10:00 +0000)]
 
* ppc-instructions: Fix missing assignment in last change.
Masaki Muranaka [Sun, 14 Feb 2010 07:37:11 +0000 (07:37 +0000)]
 
    * configure.in: Check if the host has getopt.h.
        * configure: Regenerate.
        * config.in: Regenerate.
        * main.c: Include config.h.
        Use HAVE_STDLIB_H, HAVE_UNISTD_H, HAVE_GETOPT_H.
        Include getopt.h in case HAVE_GETOPT_H is defined.
Masaki Muranaka [Sun, 14 Feb 2010 07:15:57 +0000 (07:15 +0000)]
 
 	* interp.c: Don't include sysdep.h.
 	Include stdio.h and errno.h.
 	Include string.h strings.h stdlib.h sys/stat.h if present.
Masaki Muranaka [Sun, 14 Feb 2010 06:50:44 +0000 (06:50 +0000)]
 
	* MAINTAINERS: Add myself for write after approval privileges.
gdbadmin [Sun, 14 Feb 2010 00:00:03 +0000 (00:00 +0000)]
 
*** empty log message ***
Alan Modra [Sat, 13 Feb 2010 23:00:04 +0000 (23:00 +0000)]
 
daily update
Jan Kratochvil [Sat, 13 Feb 2010 13:36:55 +0000 (13:36 +0000)]
 
gdb/
	* solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
	block.
Jan Kratochvil [Sat, 13 Feb 2010 12:02:29 +0000 (12:02 +0000)]
 
gdb/
	* solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
	only if INFO_VERBOSE.
gdb/testsuite/
	* gdb.base/prelink.exp (set verbose on): New.
Joel Brobecker [Sat, 13 Feb 2010 04:57:11 +0000 (04:57 +0000)]
 
Document new gdb_test_timeout global variable.
        * gdbint.texinfo (Testsuite): New section "Testsuite Configuration",
        documenting the gdb_test_timeout variable.
Doug Evans [Sat, 13 Feb 2010 04:44:41 +0000 (04:44 +0000)]
 
regenerate cgen-based files
Doug Evans [Sat, 13 Feb 2010 04:38:57 +0000 (04:38 +0000)]
 
	* lm32-opinst.c: Regenerate.
Sriraman Tallam [Sat, 13 Feb 2010 02:04:21 +0000 (02:04 +0000)]
 
2010-02-12  Sriraman Tallam  <tmsriram@google.com>
	* arm.cc (Scan::local_reloc_may_be_function_pointer): New function.
	(Scan::global_reloc_may_be_function_pointer): New function.
	* sparc.cc (Scan::local_reloc_may_be_function_pointer): New function.
	(Scan::global_reloc_may_be_function_pointer): New function.
	* powerpc.cc (Scan::local_reloc_may_be_function_pointer): New function.
	(Scan::global_reloc_may_be_function_pointer): New function.
	* i386.cc (Scan::local_reloc_may_be_function_pointer): New function.
	(Scan::global_reloc_may_be_function_pointer): New function.
	* x86_64.cc (Scan::local_reloc_may_be_function_pointer): New function.
	(Scan::global_reloc_may_be_function_pointer): New function.
	(Scan::possible_function_pointer_reloc): New function.
	(Target_x86_64::can_check_for_function_pointers): New function.
	* gc.h (gc_process_relocs): Scan relocation types to determine if
	function pointers were taken for targets that support it.
	* icf.cc (Icf::find_identical_sections): Include functions for
	folding in safe ICF whose pointer is not taken.
	* icf.h (Secn_fptr_taken_set): New typedef.
	(fptr_section_id_): New member.
	(section_has_function_pointers): New function.
	(set_section_has_function_pointers): New function.
	(check_section_for_function_pointers): New function.
	* options.h: Fix comment for safe ICF option.
	* target.h (can_check_for_function_pointers): New function.
	* testsuite/Makefile.am: Add icf_safe_so_test test case.
	Modify icf_safe_test for X86-64.
	* testsuite/Makefile.in: Regenerate.
	* testsuite/icf_safe_so_test.cc: New file.
	* testsuite/icf_safe_so_test.sh: New file.
	* testsuite/icf_safe_test.cc (kept_func_3): New function.
	(main): Change to take pointer to function kept_func_3.
	* testsuite/icf_safe_test.sh (arch_specific_safe_fold): Check if safe
	folding is done correctly for X86-64.
Doug Evans [Sat, 13 Feb 2010 01:13:54 +0000 (01:13 +0000)]
 
	* linux-low.c (linux_supports_tracefork_flag): Document.
	(linux_look_up_symbols): Add comment.
David S. Miller [Sat, 13 Feb 2010 00:01:20 +0000 (00:01 +0000)]
 
	* output.h (Output_reloc<SHT_REL>::Output_reloc): Add
	is_symbolless parameter.
	(Output_reloc<SHT_REL>::is_symbolless): New.
	(Output_reloc<SHT_REL>::is_symbolless_): New.
	(Output_reloc<SHT_REL>::type_): Decrease to 29 bits.
	(Output_reloc<SHT_RELA>::Output_reloc): Add is_symbolless parameter.
	(Output_reloc<SHT_RELA>::is_symbolless): New.
	(Output_data_reloc::add_global): Handle is_symbolless.
	(Output_data_reloc::add_global_relative): Likewise.
	(Output_data_reloc::add_local): Likewise.
	(Output_data_reloc::add_local_relative): Likewise.
	(Output_data_reloc::add_symbolless_global_addend): New.
	(Output_data_reloc::add_symbolless_local_addend): New.
	* output.cc (Output_reloc<SHT_REL>::Output_reloc): Handle
	is_symbolless.
	(Output_reloc::set_needs_dynsym_index): Test ->is_symbolless_
	instead of ->is_relative_
	(Output_reloc::write): Likewise.
	(Output_reloc::get_symbol_index): Return 0 when ->is_symbolless_
	(Output_reloc::write_rel): Simplify.
	* sparc.cc (Target_sparc::Scan::local): Use
	->add_symbolless_local_addend as needed.
	(Target_sparc::Scan::global): Use ->add_symbolless_global_addend as
	needed.  Also, emit appropriate unaligned vs. aligned dynamic reloc
	based upon relocation offset.
gdbadmin [Sat, 13 Feb 2010 00:00:33 +0000 (00:00 +0000)]
 
*** empty log message ***
Alan Modra [Fri, 12 Feb 2010 23:00:05 +0000 (23:00 +0000)]
 
daily update
Michael Snyder [Fri, 12 Feb 2010 21:39:27 +0000 (21:39 +0000)]
 
2010-02-12  Tomas Holmberg <th@virtutech.com>
	* mi-reverse.exp: New file. Test for reverse option to the
	following MI commands: exec-continue, exec-finish, exec-next,
	exec-step, exec-next-instruction, exec-step-instruction.
Michael Snyder [Fri, 12 Feb 2010 21:35:54 +0000 (21:35 +0000)]
 
2010-02-12  Jakob Engblom  <jakob@virtutech.com>
	* gdb.texinfo (MI commands): Added documentation of --reverse
	option to a set of MI commands. Restructured documentation of MI
	commands --exec-continue to reflect the complexity of reverse
	execution.
Michael Snyder [Fri, 12 Feb 2010 21:28:25 +0000 (21:28 +0000)]
 
2010-02-12  Tomas Holmberg <th@virtutech.com>
	* mi/mi-main.c: Added the --reverse flag to the following MI
	commands: exec-continue, exec-finish, exec-next, exec-step,
	exec-next-instruction, exec-step-instruction. This is to
	support reverse execution over the MI interface to gdb.
Daniel Gutson [Fri, 12 Feb 2010 20:52:52 +0000 (20:52 +0000)]
 
2010-02-12  Daniel Gutson  <dgutson@codesourcery.com>
	bfd/
	* elf32-arm.c (elf32_arm_output_arch_local_syms): add
	missing mapping symbol to data only sections.
	ld/testsuite/
	* ld-arm/arm-elf.exp (armelftests): New test case added.
	* ld-arm/data-only-map.s: New file.
	* ld-arm/data-only-map.d: New file.
	* ld-arm/data-only-map.ld: New file.
Daniel Gutson [Fri, 12 Feb 2010 20:18:47 +0000 (20:18 +0000)]
 
*** empty log message ***
Daniel Gutson [Fri, 12 Feb 2010 20:15:13 +0000 (20:15 +0000)]
 
	gas/
	* config/tc-arm.c (asm_opcode): operands type
	change.
	(BAD_PC_ADDRESSING): New macro message.
	(BAD_PC_WRITEBACK): Likewise.
	(MIX_ARM_THUMB_OPERANDS): New macro.
	(operand_parse_code): Added enum values.
	(parse_operands): Added thumb/arm distinction,
	plus new enum values handling.
	(encode_arm_addr_mode_2): Validations enhanced.
	(encode_arm_addr_mode_3): Likewise.
	(do_rm_rd_rn): Likewise.
	(encode_thumb32_addr_mode): Likewise.
	(do_t_ldrex): Likewise.
	(do_t_ldst): Likewise.
	(do_t_strex): Likewise.
	(md_assemble): Call parse_operands with
	a new parameter.
	(OPS_1): New macro.
	(OPS_2): Likewise.
	(OPS_3): Likewise.
	(OPS_4): Likewise.
	(OPS_5): Likewise.
	(OPS_6): Likewise.
	(insns): Updated insns operands.
	gas/testsuite/
	* gas/arm/sp-pc-validations-bad.d: New testcase.
	* gas/arm/sp-pc-validations-bad.l: New file.
	* gas/arm/sp-pc-validations-bad.s: New file.
	* gas/arm/sp-pc-validations-bad-t.d: New testcase.
	* gas/arm/sp-pc-validations-bad-t.l: New file.
	* gas/arm/sp-pc-validations-bad-t.s: New file.
	* gas/arm/sp-pc-usage-t.d: Removed invalid insns.
	* gas/arm/sp-pc-usage-t.s: Likewise.
	* gas/arm/unpredictable.d: Likewise.
	* gas/arm/unpredictable.s: Likewise.
	* gas/arm/thumb2_bcond.d: Added test.
	* gas/arm/thumb2_bcond.s: Likewise.
Pedro Alves [Fri, 12 Feb 2010 16:15:24 +0000 (16:15 +0000)]
 
	gdb/doc/
	* gdb.texinfo (Using the Collected Data): Specify that the address
	range of `tfind outsize' is exclusive, and that the address range
	of `tfind range' is inclusive.
	(Tracepoint Packets): Specify that the address range of
	`QTFrame:range' is inclusive, and that the address range of
	`QTFrame:outside' is exclusive
	gdb/
	* tracepoint.c (_initialize_tracepoint): Specify that the address
	range of `tfind outsize' is exclusive, and that the address range
	of `tfind range' is inclusive, in the commands' help strings.
Tristan Gingold [Fri, 12 Feb 2010 14:34:45 +0000 (14:34 +0000)]
 
gas/
2010-02-12  Tristan Gingold  <gingold@adacore.com>
	    Douglas B Rupp  <rupp@gnat.com>
	* config/tc-ia64.c (enum reloc_func): Add FUNC_SLOTCOUNT_RELOC.
	(DUMMY_RELOC_IA64_SLOTCOUNT): Added.
	(pseudo_func): Add an entry for slotcount.
	(md_begin): Initialize slotcount pseudo symbol.
	(ia64_parse_name): Handle @slotcount parameter.
	(ia64_gen_real_reloc_type): Handle slotcount.
	(md_apply_fix): Ditto.
	* doc/c-ia64.texi (IA-64-Relocs): Document @slotcount.
gas/testsuite/
2010-02-12  Tristan Gingold  <gingold@adacore.com>
	* gas/ia64/slotcount.s, gas/ia64/slotcount.s: New test.
	* gas/ia64/ia64.exp: Add slotcount test (vms only).
Vladimir Prus [Fri, 12 Feb 2010 10:34:47 +0000 (10:34 +0000)]
 
	* gdb.texinfo (GDB/MI Result Records): Clarify ^running.
Doug Kwan [Fri, 12 Feb 2010 05:51:32 +0000 (05:51 +0000)]
 
2010-02-11  Doug Kwan  <dougkwan@google.com>
	* arm.cc (Target_arm::Scan::local): Fix bugs in relocation handling.
	(Target_arm::Scan::global): Ditto.  Also remove a comment before the
	beginning of function.
	(Target_arm::Relocate::relocate): Remove error messages for MOVW_ABS
	and MOVT_ABS relocations.  Those are non issued in scanning.  Fix
	parameter is_32bit in calls to should_apply_static_reloc.
	* testsuite/Makefile.am (check_SCRIPTS): Add arm_abs_global.sh.
	(check_DATA): Add arm_abs_global.stdout.
	(arm_abs_lib.o, libarm_abs.so, arm_abs_global.o, arm_abs_global,
	arm_abs_global.stdout): New rules.
	(MOSTLLYCLEANFILES): Add arm_abs_global
	* Makefile.in: Regenerate.
	* testsuite/arm_abs_global.s: New file.
	* testsuite/arm_abs_global.sh: Ditto.
	* testsuite/arm_abs_lib.s: Ditto.
Joel Brobecker [Fri, 12 Feb 2010 04:55:15 +0000 (04:55 +0000)]
 
Spurious "dll not found" error messages on x64-windows.
        * windows-nat.c: Add include of complaints.h.
        (handle_unload_dll): Change dll-not-found error into a complaint.
Doug Evans [Fri, 12 Feb 2010 04:42:28 +0000 (04:42 +0000)]
 
	* cgen-dis.in (print_normal): Delete CGEN_PRINT_NORMAL.
	(print_address): Delete CGEN_PRINT_ADDRESS.
	* fr30-dis.c, * frv-dis.c, * ip2k-dis.c, * iq2000-dis.c,
	* lm32-dis.c, * m32c-dis.c, * m32r-desc.c, * m32r-desc.h,
	* m32r-dis.c, * mep-dis.c, * mt-dis.c, * openrisc-dis.c,
	* xc16x-dis.c, * xstormy16-dis.c: Regenerate.
Doug Evans [Fri, 12 Feb 2010 04:38:21 +0000 (04:38 +0000)]
 
	* m32r.cpu (HASH-PREFIX): Delete.
	(duhpo, dshpo): New pmacros.
	(simm8, simm16): Delete HASH-PREFIX attribute, define with dshpo.
	(uimm3, uimm4, uimm5, uimm8, uimm16, imm1): Delete HASH-PREFIX
	attribute, define with dshpo.
	(uimm24): Delete HASH-PREFIX attribute.
	* m32r.opc (CGEN_PRINT_NORMAL): Delete.
	(print_signed_with_hash_prefix): New function.
	(print_unsigned_with_hash_prefix): New function.
	* xc16x.cpu (dowh): New pmacro.
	(upof16): Define with dowh, specify print handler.
	(qbit, qlobit, qhibit): Ditto.
	(upag16): Ditto.
	* xc16x.opc (CGEN_PRINT_NORMAL): Delete.
	(print_with_dot_prefix): New functions.
	(print_with_pof_prefix, print_with_pag_prefix): New functions.
Ian Lance Taylor [Fri, 12 Feb 2010 04:33:53 +0000 (04:33 +0000)]
 
	* gold.cc (queue_middle_gc_tasks): Use a separate blocker for each
	Read_relocs task.
	(queue_middle_tasks): Likewise, and also for Scan_relocs.  Run
	Allocate_commons_task first.
	* reloc.cc (Read_relocs::run): Pass next_blocker_ down to next
	task, rather than symtab_lock_.
	(Gc_process_relocs::~Gc_process_relocs): New function.
	(Gc_process_relocs::is_runnable): Check this_blocker_.
	(Gc_process_relocs::locks): Use next_blocker_ rather than
	blocker_.
	(Scan_relocs::~Scan_relocs): New function.
	(Scan_relocs::is_runnable): Check this_blocker_ rather than
	symtab_lock_.
	(Scan_relocs::locks): Drop symtab_lock_ and blocker_.  Add
	next_blocker_.
	* reloc.h (class Read_relocs): Drop symtab_lock_ and blocker_
	fields.  Add this_blocker_ and next_blocker_ fields.  Adjust
	constructor accordingly.
	(class Gc_process_relocs): Likewise.
	(class Scan_relocs): Likewise.
	* common.h (class Allocate_commons_task): Remove symtab_lock_
	field, and corresponding constructor parameter.
	* common.cc (Allocate_commons_tasK::is_runnable): Remove use of
	symtab_lock_.
	(Allocate_commons_task::locks): Likewise.