summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* *** empty log message ***gdbadmin2012-10-081-1/+1
|
* PR binutils/14662Alan Modra2012-10-072-38/+24
| | | | | * elf.c (_bfd_elf_make_section_from_shdr): Treat .gdb_index as SEC_DEBUGGING.
* daily updateAlan Modra2012-10-071-1/+1
|
* *** empty log message ***gdbadmin2012-10-071-1/+1
|
* daily updateAlan Modra2012-10-061-1/+1
|
* gdb/Jan Kratochvil2012-10-065-2/+94
| | | | | | | | | | | Fix crash during stepping on ppc32. * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Test NULL SYM. gdb/testsuite/ Fix crash during stepping on ppc32. * gdb.base/step-symless.c: New file. * gdb.base/step-symless.exp: New file.
* daily updateAlan Modra2012-10-061-1/+1
|
* *** empty log message ***gdbadmin2012-10-061-1/+1
|
* opcodes/Peter Bergner2012-10-053-1/+21
| | | | | | | | | | | | | | | | * ppc-dis.c (ppc_opts) <altivec>: Use PPC_OPCODE_ALTIVEC2; * ppc-opc.c (VBA): New define. (powerpc_opcodes) <vcuxwfp, vcsxwfp, vcfpuxws, vcfpsxsw, vmr, vnot, mfppr, mfppr32, mtppr, mtppr32>: New extended mnemonics. gas/testsuite/ * gas/ppc/power7.d: Add tests for mfppr, mfppr32, mtppr and mtppr32. * gas/ppc/power7.s: Likewise. * gas/ppc/altivec.d: Add tests for all legacy Altivec instructions. * gas/ppc/altivec.s: Likewise. * gas/ppc/altivec2.d: New test file. * gas/ppc/altivec2.s: Likewise. * gas/ppc/ppc.exp: Run it.
* daily updateAlan Modra2012-10-051-1/+1
|
* *** empty log message ***gdbadmin2012-10-051-1/+1
|
* * v850-dis.c (disassemble): Place square parentheses around secondNick Clifton2012-10-042-4/+21
| | | | | | | | | | register operand of clr1, not1, set1 and tst1 instructions. * config/tc-v850.c (v850_insert_operand): Use a static buffer for the error message. * gas/v850/v850e1.d: Fix expected disassembly of clr1, not1, set1 and tst1 insns.
* 2012-10-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>Andreas Krebbel2012-10-046-34/+95
| | | | | | | | | | | | | | | | | | | | | | * config/tc-s390.c (s390_parse_cpu): Add new option zEC12. * doc/as.texinfo: Document new option zEC12. * doc/c-s390.texi: Likewise. 2012-10-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> * gas/s390/s390.exp: Run zEC12 tests. * gas/s390/zarch-zEC12.d: New file. * gas/s390/zarch-zEC12.s: New file. 2012-10-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> * s390-mkopc.c: Support new option zEC12. * s390-opc.c: Add new instruction formats. * s390-opc.txt: Add new instructions for zEC12. 2012-10-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> * s390.h (s390_opcode_cpu_val): Add S390_OPCODE_ZEC12.
* daily updateAlan Modra2012-10-041-1/+1
|
* *** empty log message ***gdbadmin2012-10-041-1/+1
|
* 2012-10-04 Chao-ying Fu <fu@mips.com>Steve Ellcey2012-10-032-0/+16
| | | | | | Steve Ellcey <sellcey@mips.com> * mips/mips3264r2.igen (rdhwr): New.
* PR symtab/14601Doug Evans2012-10-035-0/+87
| | | | | | | | * buildsym.c (buildsym_init): Reset using_directives to NULL. testsuite/ * gdb.cp/using-crash.exp: New file. * gdb.cp/using-crash.cc: New file.
* daily updateAlan Modra2012-10-031-1/+1
|
* *** empty log message ***gdbadmin2012-10-031-1/+1
|
* http://sourceware.org/ml/gdb-patches/2012-10/msg00027.htmlaburgess2012-10-022-18/+21
| | | | | | | gdb/ChangeLog * remote-sim.c (dump_mem): Always dump buffer contents, zero fill output and use uint32_t not long to ensure 4 byte size.
* * lib/gdb.exp (gdb_unload): Change wording of perror text to beDoug Evans2012-10-022-9/+22
| | | | | | | more consistent. (runto,gdb_debug_format): Ditto. (gdb_file_cmd): Watch for eof in nested gdb_expect. Clean up logging and error messages.
* gdb_bfd_unref failed assertion on AIX.Joel Brobecker2012-10-022-0/+6
| | | | | | | | | | | | | | | | | | | | | Trying to run any program on AIX triggers a failed assertion: (gdb) run Starting program: /[...]/simple_main /[...]/gdb_bfd.c:288: internal-error: gdb_bfd_unref: Assertion `gdata->refc >= 1' failed. A problem internal to GDB has been detected, further debugging may prove unreliable. Quit this debugging session? (y or n) What happens is that we have a loop where we forgot to update the value of "last", resulting in the loop unref'ing the same BFD over and over again. We bomb the second time around, when triggering an assertion on the ref counter. gdb/ChangeLog: * rs6000-nat.c (add_vmap): Set "last" to "next" after having unref'ed it.
* *** empty log message ***gdbadmin2012-10-021-1/+1
|
* daily updateAlan Modra2012-10-021-1/+1
|
* http://sourceware.org/ml/gdb-patches/2012-09/msg00568.htmlaburgess2012-10-017-7/+178
| | | | | | | | | | | | | | | | | | gdb/ChangeLog * target.c (simple_search_memory): Include access length in warning message. gdb/gdbserver/ChangeLog * server.c (handle_search_memory_1): Include access length in warning message. gdb/testsuite/ChangeLog Test find command on unmapped memory. * gdb.base/find-unmapped.c: New file. * gdb.base/find-unmapped.exp: New file.
* daily updateAlan Modra2012-10-011-1/+1
|
* *** empty log message ***gdbadmin2012-10-011-1/+1
|
* daily updateAlan Modra2012-09-301-1/+1
|
* *** empty log message ***gdbadmin2012-09-301-1/+1
|
* Sync toplevel files with GCC treeH.J. Lu2012-09-295-67/+178
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2012-09-28 Ian Lance Taylor <iant@google.com> * Makefile.def: Make all-target-libgo depend on all-target-libbacktrace. * Makefile.in: Rebuild. 2012-09-26 Ian Lance Taylor <iant@google.com> * Makefile.def: Make all-gcc depend on all-libbacktrace. * Makefile.in: Rebuild. 2012-09-06 Diego Novillo <dnovillo@google.com> * configure.ac: Bump minimum GMP version to 4.2.3. * configure: Re-generate. 2012-09-05 Georg-Johann Lay <avr@gjlay.de> PR target/54461 * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib, target-libgloss if not configured --with-avrlibc=no. * configure: Regenerate. 2012-09-04 Jason Merrill <jason@redhat.com> * configure.ac: Fix --enable-languages=all. 2012-09-03 Richard Guenther <rguenther@suse.de> PR bootstrap/54138 * configure.ac: Re-organize ISL / CLOOG checks to allow disabling with either --without-isl or --without-cloog. * configure: Regenerated. 2012-09-03 Georg-Johann Lay <avr@gjlay.de> * configure.ac (noconfigdirs,target=avr): Add target-libquadmath. * configure: Regenerate.
* Sync config with GCCH.J. Lu2012-09-293-23/+7
| | | | | | | | 2012-09-03 Richard Guenther <rguenther@suse.de> PR bootstrap/54138 * config/cloog.m4: Adjust for toplevel reorg. * config/isl.m4: Adjust.
* gdb/testsuite/qiyao2012-09-296-0/+570
| | | | | | | * gdb.trace/mi-tracepoint-changed.exp: New. * gdb.mi/mi-breakpoint-changed.exp: New. * gdb.mi/pending.c, gdb.mi/pendshr1.c: New * gdb.mi/pendshr2.c: New.
* *** empty log message ***gdbadmin2012-09-291-1/+1
|
* daily updateAlan Modra2012-09-291-1/+1
|
* 2012-09-28 Nathan Miller <nathanm2@us.ibm.com>emachado2012-09-282-5/+7
| | | | | | | | Edjunior Machado <emachado@linux.vnet.ibm.com> PR gdb/13989 * solib.c (solib_find): Prevent GDB from loading native libraries when debugging a cross-target corefile.
* 2012-09-28 selven <pcthegreat@gmail.com>Pedro Alves2012-09-282-1/+8
| | | | | | | Make definition match declaration. * regcache.c (regcache_register_status): Change return type to enum register_status.
* Don't abort() when disassembling bad moxie instructions.Anthony Green2012-09-285-30/+109
|
* gdb/qiyao2012-09-285-4/+113
| | | | | | | | | | | * mi/mi-main.c (mi_cmd_data_write_memory): Call write_memory_with_notification instead of write_memory. (mi_cmd_data_write_memory_bytes): Call write_memory_with_notification instead of target_write_memory. gdb/testsuite/ * gdb.mi/pr11022.exp: New. * gdb.mi/pr11022.c: New. Copied from gdb.base/.
* gdb/qiyao2012-09-282-0/+9
| | | | | * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Emit error when the length of content is not an even number.
* daily updateAlan Modra2012-09-281-1/+1
|
* *** empty log message ***gdbadmin2012-09-281-1/+1
|
* Fix https://bugzilla.redhat.com/show_bug.cgi?id=849357Tom Tromey2012-09-275-2/+54
| | | | | | | | | * cp-valprint.c (cp_print_value_fields): Use get_vptr_fieldno. gdb/testsuite * gdb.cp/derivation.exp: Add regression test. * gdb.cp/derivation.cc (class V_base, class V_inter, class V_derived): New. (vderived): New global.
* sol-thread.c: Remove commented-out code.Joel Brobecker2012-09-272-54/+5
| | | | | | | gdb/ChangeLog: * sol-thread.c (sol_thread_fetch_registers) (sol_thread_store_registers): Delete commented out code.
* New unit sparc-sol-thread.c extracted from sol-thread.cJoel Brobecker2012-09-275-28/+67
| | | | | | | | | | | | | | | Moving some sparc-specific routines out of sol-thread.c into their own (new) file. gdb/ChangeLog: * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs): Move these functions to sparc-sol-thread.c. * sparc-sol-thread.c: New file. * configure.ac: Add sparc-sol-thread.o to CONFIG_OBS and sparc-sol-thread.c to CONFIG_SRCS for sparc-solaris native configurations. * configure: Regenerate.
* sol-thread.c: Remove #if 0-ed code.Joel Brobecker2012-09-272-50/+5
| | | | | | | gdb/ChangeLog: * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs): Remove commented-out code.
* sol-thread.c: conditionalize some sparc-specific libthread_db functions.Joel Brobecker2012-09-272-0/+9
| | | | | | | gdb/ChangeLog: * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs): Enable this code for sparc hosts only.
* Add procfs_find_LDT_entry declaration (procfs.h).Joel Brobecker2012-09-273-1/+13
| | | | | | | | | | | | Add a declaration for procfs_find_LDT_entry in order to prevent a compiler warning about this function missing one. This also helps making sure that declaration and definition remain consistent. gdb/ChangeLog: * procfs.h (procfs_find_LDT_entry): Add declaration. * sol-thread.c (ps_lgetLDT): Delete local declaration of function procfs_find_LDT_entry.
* Make procfs.c:proc_get_LDT_entry staticJoel Brobecker2012-09-272-1/+5
| | | | | | | | This function is not used outside of procfs.c. gdb/ChangeLog: * procfs.c (proc_get_LDT_entry): Make static.
* Fix declaration of proc_find_memory_regionsJoel Brobecker2012-09-272-5/+5
| | | | | | | | | | | | This function is used as a target_ops callback. The function implemention was recently changed, but the declaration wasn't updated accordingly. This fixes a build failure on Solaris. gdb/ChangeLog: * procfs.c (proc_find_memory_regions): Fix declaration.
* * amd64-tdep.c (amd64_return_value): Revert previous changesiddhesh2012-09-2710-34/+51
| | | | | | | | | | | | | | that used TYPE_LENGTH directly. * bfin-tdep.c (bfin_extract_return_value): Likewise. (bfin_store_return_value): Likewise. * cris-tdep.c (cris_store_return_value): Likewise. (cris_extract_return_value): Likewise. * h8300-tdep.c (h8300_extract_return_value): Likewise. * hppa-tdep.c (hppa64_return_value): Likewise. * lm32-tdep.c (lm32_store_return_value): Likewise. * microblaze-tdep.c (microblaze_store_return_value): Likewise. * spu-tdep.c (spu_value_from_register): Likewise. * vax-tdep.c (vax_return_value): Likewise.