summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* daily updatesid-20020905-branchpointsid-20020905-branchcvs/sid-20020905-branchAlan Modra2002-09-071-1/+1
|
* * i386-tdep.c (i386_register_virtual_type,Mark Kettenis2002-09-062-12/+19
| | | | | | | | | i386_register_convertible, i386_register_convert_to_virtual, i386_register_comvert_to_raw): Use FP_REGNUM_P and SSE_REGNUM_P instead of IS_FP_REGNUM and IS_SSE_REGNUM. (i386_gdbarch_init): Fix comment. Add comments on calls that set sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum. Don't set push_arguments twice.
* * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start andMark Kettenis2002-09-064-12/+17
| | | | | | | | | sigtramp_end to i386bsd_sigtramp_start and i386bsd_sigtramp_end. * i386nbsd-tdep.c (i386nbsd_init_abi): Set sigtramp_start and sigtramp_end to NULL. * config/i386/tm-fbsd.h (SIGTRAMP_START, SIGTRAMP_END): Remove defines. (i386bsd_sigtramp_start, i386_sigtramp_end): Remove prototypes.
* * i386nbsd-tdep.c (i386nbsd_pc_in_sigtramp): Remove spuriousMark Kettenis2002-09-062-1/+3
| | | | whitespace.
* * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): New methods.Mark Kettenis2002-09-065-4/+133
| | | | | | * gdbarch.h, gdbarch.c: Re-generate. * blockframe.c (find_pc_sect_partial_function): Convert to use SIGTRAMP_START_P predicate.
* merge from gccDJ Delorie2002-09-062-1/+5
|
* daily updateAlan Modra2002-09-061-1/+1
|
* *** empty log message ***gdbadmin2002-09-061-1/+1
|
* * gdb.threads/killed.exp: Fix test failure message.Jim Blandy2002-09-052-1/+5
|
* 2002-09-05 Michael Snyder <msnyder@redhat.com>Michael Snyder2002-09-052-3/+7
| | | | * arm-tdep.c (arm_extract_return_value): Use new regcache method.
* 2002-09-05 Michael Snyder <msnyder@redhat.com>Michael Snyder2002-09-052-2/+10
| | | | | | * arm-tdep.c (arm_init_extra_frame_info): Distinguish between generic_dummy_frame method and old method. Also distinguish between ARM_FP_REGNUM and THUMB_FP_REGNUM.
* 2002-09-05 Michael Snyder <msnyder@redhat.com>Michael Snyder2002-09-052-6/+11
| | | | | | | * mips-tdep.c (mips_n32n64_push_arguments): Remove alignment adjustment that doesn't conform to the ABI. (mips_extract_struct_value_address): Retrieve V0_REGNUM from saved regcache, not from current regcache.
* 2002-09-05 Andrew Cagney <ac131313@redhat.com>Andrew Cagney2002-09-055-46/+58
| | | | | | | | | | | * NEWS: Update for 5.3. Add new section ``Changes since 5.3''. * README: Update. Index: doc/ChangeLog 2002-09-05 Andrew Cagney <ac131313@redhat.com> * gdb.texinfo (Contributors): Mention 5.2 and 5.3 release engineer.
* Mention that 5.3 branch was created (note, this was an insert).Andrew Cagney2002-09-051-0/+4
|
* 2002-08-26 Michael Snyder <msnyder@redhat.com>Michael Snyder2002-09-052-17/+31
| | | | | * breakpoint.c (insert_breakpoints): Protect all references to 'process_warning'. Shorten long lines.
* daily updateAlan Modra2002-09-051-1/+1
|
* *** empty log message ***gdbadmin2002-09-051-1/+1
|
* * config.bfd (mips*-*-irix6*): Add new ABI vectors. Make n32 defaultKevin Buettner2002-09-042-2/+7
| | | | vector.
* * lib/mi-support.exp: Update copyright.Keith Seitz2002-09-042-7/+13
| | | | | (mi_gdb_test): Increase the priority of the expected pattern so that it matches gdb_test.
* * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb modeJason Thorpe2002-09-042-3/+8
| | | | if arm_apcs_32 is false.
* Do not insert non-BookE32 instructions into the hash table if the target cpuNick Clifton2002-09-042-2/+6
| | | | is the BookE32. (case 107575)
* Have objdump's --help switch document PPC -M options.Nick Clifton2002-09-045-0/+29
|
* The BookE implementations of the TLBWE and TLBRE instructions do not take anyNick Clifton2002-09-042-3/+8
| | | | arguments.
* daily updateAlan Modra2002-09-041-1/+1
|
* *** empty log message ***gdbadmin2002-09-041-1/+1
|
* * lib/gdb.exp (gdb_compile_pthreads): Fix "build_bin" typo.gdb_5_3-2002-09-04-branchpointKeith Seitz2002-09-032-2/+8
| | | | | Use integer comparison instead of string comparison for testing whether binary was built.
* * gdb/avr-tdep.c (avr_gdbarch_init): Use generic_unwind_get_saved_register.Theodore A. Roth2002-09-032-2/+6
|
* * tuiIO.c (tui_putc): New function to print one character.Stephane Carrez2002-09-033-14/+248
| | | | | | | | | | | | | | | | | (printable_part): New function from readline/complete.c. (PUTX): New macro, likewise. (print_filename): New function, likewise. (get_y_or_n): New function, likewise and adapted for TUI. (tui_rl_display_match_list): New function from readline/complete.c and writes on TUI command window. (tui_setup_io): Install or remove the readline hook rl_completion_display_matches_hook so that completion is written directly in TUI command window instead of in the TUI pipe. (tui_initialize_io): Use #ifdef TUI_USE_PIPE_FOR_READLINE for the TUI redirection pipe. (tui_getc): Likewise for call to tui_readline_output. (tui_readline_output): Likewise for function. * tui.c (tui_rl_startup_hook): Always take care of gdb prompt.
* * gdb.threads/killed.exp, gdb.threads/killed.c: New test.Jim Blandy2002-09-033-0/+125
|
* 2002-09-03 David Carlton <carlton@math.stanford.edu>David Carlton2002-09-032-4/+13
| | | | | | * dwarf2read.c (dwarf2_add_member_fn): Add the 'type' argument (PR gdb/653). Update call to smash_to_method_type. (read_structure_scope): Update call to dwarf2_add_member_fn.
* * gdb680.exp: New file to test to check for uiout list/tupleKeith Seitz2002-09-032-0/+61
| | | | nesting bug.
* 2002-09-03 Michal Ludvig <mludvig@suse.cz>Michal Ludvig2002-09-033-0/+7
| | | | | * x86-64-linux-tdep.c: Include gdb_string.h * x86-64-linux-nat.c: Ditto.
* * ada-exp.y (yyname, yyrule): Remap global variables that appearJason Thorpe2002-09-037-0/+22
| | | | | | | | | when YYDEBUG is set to 1. * c-exp.y: Likewise. * f-exp.y: Likewise. * jv-exp.y: Likewise. * m2-exp.y: Likewise. * p-exp.y: Likewise.
* daily updateAlan Modra2002-09-031-1/+1
|
* *** empty log message ***gdbadmin2002-09-031-1/+1
|
* * tuiWin.c (_newHeightOk): Fix compilation warnings.Stephane Carrez2002-09-022-2/+6
|
* * gdb.texinfo (TUI Overview): Document status line fields.Stephane Carrez2002-09-022-0/+33
|
* * gdb.texinfo (TUI Commands): Document info win command.Stephane Carrez2002-09-022-0/+8
|
* * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) toJason Thorpe2002-09-027-6/+22
| | | | | | | | | | | | dependency list. * i386nbsd-tdep.c (i386nbsdelf_init_abi): Set solib_svr4_fetch_link_map_offsets to nbsd_ilp32_solib_svr4_fetch_link_map_offsets. * config/i386/nbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o. * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o. * config/i386/nbsdelf.mh (NATDEPFILES): Remove solib.o, solib-svr4.o, and solib-legacy.o. * config/i386/tm-nbsd.h: Include solib.h.
* * configure.tgt (i[3456]86-*-netbsdelf*): Merge with...Jason Thorpe2002-09-025-33/+13
| | | | | | | | | | (i[3456]86-*-netbsd*): ...this. Set gdb_target to nbsd. (i[3456]86-*-openbsd*): Make this a separate entry. Add a comment noting that this needs its own target configuration. * config/i386/nbsd.mt: New file. * config/i386/nbsdaout.mt: Remove. * config/i386/nbsdelf.mt: Ditto. * config/i386/tm-nbsdaout.h: Ditto.
* * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): New function.Jason Thorpe2002-09-023-27/+99
| | | | | | | | | (i386nbsd_pc_in_sigtramp): Rewrite to use i386nbsd_sigtramp_offset. (i386nbsd_init_abi): Don't initialize tdep->sigtramp_start or tdep->sigtramp_end. (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): Remove. * config/i386/tm-nbsd.h (SIGTRAMP_START, SIGTRAMP_END) (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove.
* Use helpful names instead of cryptically overloaded bfd_reloc error codes.Nick Clifton2002-09-022-131/+78
| | | | | | Replace caching of external symbols with caching of internal symbols obtained from calling bfd_elf_get_elf_syms(). Fixup problems with freeing cached allocated memory blocks.
* * cpu-pj.c (scan_mach, compatible, arch_info_struct): Remove.Alan Modra2002-09-024-127/+15
| | | | | | | | | (bfd_pj_arch): Use bfd_default_scan. * cpu-v850.c (scan): Remove. (N): Use bfd_default_scan. * cpu-z8k.c (scan_mach): Remove. (arch_info_struct, bfd_z8k_arch): Reorganize so that the default is first. Use bfd_default_scan.
* * ecoff.c (_bfd_ecoff_set_arch_mach_hook): Don't use hard-codedAlan Modra2002-09-027-30/+44
| | | | | | | | | | | | | | | | | bfd_mach constants. (ecoff_get_magic): Likewise. * elf32-v850.c (v850_elf_object_p): Likewise. (v850_elf_final_write_processing): Likewise. * mipsbsd.c (MY(set_arch_mach)): Likewise. (MY(write_object_contents)): Likewise. * coff64-rs6000.c (xcoff64_write_object_contents): Likewise. * coffcode.h (coff_write_object_contents): Likewise. (coff_set_arch_mach_hook): Add comment describing machine == 0. Remove unnecessary "machine" assignments. (coff_write_relocs): Test for the absolute section sym by testing section and flags. * pdp11.c (NAME(aout,machine_type)): Like aoutx.h.
* Remove redundant references to V850EA architecture.Nick Clifton2002-09-022-17/+4
|
* * arc-opc.c: Include bfd.h.Alan Modra2002-09-022-1/+7
| | | | (arc_get_opcode_mach): Subtract off base bfd_mach value.
* * aoutx.h (NAME(aout,machine_type)): Recognize bfd_mach_i386_i386Alan Modra2002-09-022-1/+8
| | | | and bfd_mach_i386_i386_intel_syntax.
* *** empty log message ***gdbadmin2002-09-021-1/+1
|
* daily updateAlan Modra2002-09-021-1/+1
|
* * Makefile.in (i386nbsd-tdep.o): Add $(arch_utils_h),Jason Thorpe2002-09-017-63/+109
| | | | | | | | | | | | | | | | | | | | | $(i386_tdep_h), and nbsd-tdep.h to dependency list. * i386-tdep.h (i386bsd_init_abi): New prototype. * i386bsd-tdep.c (i386bsd_init_abi): Remove "static" from function declaration. (_initialize_i386bsd_tdep): Don't register OS ABI handlers for NetBSD-a.out or NetBSD-ELF. (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end) (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset) (i386nbsd_init_abi, i386nbsdelf_init_abi): Move to... * i386nbsd-tdep.c: ...here. Include arch-utils.h, i386-tdep.h, and nbsd-tdep.h. (i386nbsd_pc_in_sigtramp): New function. (i386nbsd_init_abi): Set gdbarch_pc_in_sigtramp to i386nbsd_pc_in_sigtramp. (_initialize_i386nbsd_tdep): Register i386nbsd_init_abi and i386nbsdelf_init_abi OS ABI handlers. * config/i386/nbsdaout.mt (TDEPFILES): Add nbsd-tdep.o. * config/i386/nbsdelf.mt (TDEPFILES): Likewise.