summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 2002-03-27 Michael Snyder <msnyder@redhat.com>Michael Snyder2002-03-282-11/+16
| | | | | * gdb.base/help.exp: Modify expect strings to reflect clean-ups in help messages.
* 2002-03-27 Michael Snyder <msnyder@redhat.com>Michael Snyder2002-03-287-8/+17
| | | | | | | | | * breakpoint.c (_initialize_breakpoint): Clean up help string. * infcmd.c (_initialize_infcmd): Ditto. * language.c (_initialize_language): Ditto. * symfile.c (_initialize_symfile): Ditto. * top.c (_init_main): Ditto. * cli/cli-cmds.c (init_cli_cmds): Ditto.
* 2002-03-27 Elena Zannoni <ezannoni@redhat.com>Elena Zannoni2002-03-282-20/+128
| | | | | | | | * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec vector registers handling. (skip_prologue): Handle new AltiVec instructions. Fill in new fields of frame data. (frame_get_saved_regs): Fill in information for AltiVec registers.
* *** empty log message ***gdbadmin2002-03-281-1/+1
|
* * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body intoJim Blandy2002-03-273-67/+89
| | | | | | a function; leave this macro here to invoke that function. (symbol_init_mangled_name): Declaration for that function. * symtab.c (symbol_init_mangled_name): New function.
* daily updateAlan Modra2002-03-271-1/+1
|
* s/strerror/safe_strerror/Andrew Cagney2002-03-277-35/+44
|
* * event-top.c (command_line_handler): Remove useless if.Andreas Schwab2002-03-272-14/+15
|
* * gdbint.texinfo (Releasing GDB): Revise the section `Before theAndrew Cagney2002-03-272-39/+29
| | | | Branch'.
* merge from gccDJ Delorie2002-03-272-1/+14
|
* * config/tc-i386.c (output_jump): Set fx_pcrel_adjust to size ofAndreas Schwab2002-03-272-18/+36
| | | | | | | | field for pc-relative fixups. (output_disp): Likewise. (md_estimate_size_before_relax): Likewise. (tc_gen_reloc): Subtract fx_pcrel_adjust instead of fx_size for pc-relative fixups in 64bit mode.
* * MAINTAINERS: Update my email address.Peter Targett2002-03-272-1/+5
|
* * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyrightAndreas Jaeger2002-03-272-13/+18
| | | | comment.
* * configure.host: Set up for generic hosts first, then tweak asAlan Modra2002-03-272-78/+73
| | | | | necessary in more specific targets. (HOSTING_LIBS): Include libgcc_eh.a if found.
* Copy the r_offset field into and out of the internal reloc strcuture.Nick Clifton2002-03-272-0/+10
|
* * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.Michal Ludvig2002-03-276-79/+135
| | | | | | | | | | | | | | | | | (x86_64_num_regs, x86_64_num_gregs): Added extern variables. * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS. (x86_64_linux_dr_get_status, supply_gregset), (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs. * x86-64-tdep.c (x86_64_register_raw_size_table): Delete. (x86_64_register_info_table): Add. (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add. (x86_64_register_raw_size, x86_64_register_virtual_type), (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new general x86_64_register_info_table. (i386_gdbarch_init): gdbarch_register_bytes is now set dynamicaly during initialization. * regformats/reg-x86-64.dat: Synced with changes to registers above. * gdbserver/linux-x86-64-low.c: Ditto.
* 2002-03-27 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz2002-03-275-11/+34
| | | | | | | | | * gdbserver/server.c (main): Call target_signal_to_host_p and target_signal_to_host on signals received from the remote. * gdbserver/remote-utils.c (prepare_resume_reply): Call target_signal_from_host on signals sent to the remote. * gdbserver/server.h: Add prototypes. Include "gdb/signals.h". * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
* 2002-03-27 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz2002-03-272-3/+17
| | | | | | | * signals/signals.c: Include "server.h" in gdbserver build. (target_signal_from_name): Don't use STREQ. (_initialize_signals): Likewise. Don't include function in gdbserver build.
* 2002-03-27 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz2002-03-273-2/+10
| | | | | | * signals.c: Moved to... * signals/signals.c: Here. * Makefile (signals.o): Update.
* *** empty log message ***gdbadmin2002-03-271-1/+1
|
* * somread.c (som_symtab_read): Remove some commented out code andJeff Law2002-03-273-22/+25
| | | | | | | | | updated related comments. Do not set the minimal symbol table to mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope in a dynamic executable. * hppa-tdep.c (find_proc_framesize): Sanely handle the case where we are unable to find the minimal symbol for the given PC value.
* * elf.c (_bfd_elf_get_symtab_upper_bound): Leave space forAlan Modra2002-03-272-2/+12
| | | | | terminating NULL if empty symbol table. (_bfd_elf_get_dynamic_symtab_upper_bound): Likewise.
* merge from gccDJ Delorie2002-03-264-39/+57
|
* 2002-03-26 Fred Fish <fnf@redhat.com>Fred Fish2002-03-262-4/+24
| | | | | | * gdb.base/step-test.exp: Accept stopping in memcpy/bcopy when we have debugging info for those functions and the compiler uses them internally to copy structs around.
* daily updateAlan Modra2002-03-261-1/+1
|
* 2002-03-26 H.J. Lu (hjl@gnu.org)H.J. Lu2002-03-262-1/+7
| | | | | * elflink.h (elf_link_input_bfd): Revert the last change since the gcc exception handling isn't fixed yet.
* 2002-03-26 H.J. Lu (hjl@gnu.org)H.J. Lu2002-03-262-2/+6
| | | | | * elflink.h (elf_link_input_bfd): Complain about relocations against local symbols in discarded sections.
* 2002-03-26 Fred Fish <fnf@redhat.com>Fred Fish2002-03-262-1/+13
| | | | | * gdb.base/list.exp: Revert the change made yesterday and add note about why we don't list the default lines for remote targets.
* * elflink.h (elf_gc_mark): Don't recurse into non-ELF sections.Alan Modra2002-03-262-5/+13
|
* 2002-03-25 Michael Snyder <msnyder@redhat.com>Michael Snyder2002-03-262-247/+251
| | | | * gdb.base/help.exp: Clean up unnecessary wild cards in regexps.
* 2002-03-25 Fred Fish <fnf@redhat.com>Fred Fish2002-03-262-7/+7
| | | | | * gdb.base/list.exp: This test works on remote targets so remove the short circuit for remote targets. Update copyright.
* Sigh, should have updated the copyright date in theFred Fish2002-03-261-1/+1
| | | | change I just checked in. Fix it here.
* 2002-03-25 Fred Fish <fnf@redhat.com>Fred Fish2002-03-262-12/+19
| | | | | | | * gdb.base/attach.exp: Fix logic error that was suppressing this test for all non hppa*-*-hpux* targets, instead of the hp target. Move comments closer to the suppression point. Also now need to check that we are running natively.
* *** empty log message ***gdbadmin2002-03-261-1/+1
|
* daily updateAlan Modra2002-03-251-1/+1
|
* 2002-03-25 Jeff Law (law@redhat.com)Michael Snyder2002-03-252-1/+12
| | | | * linux-proc.c (read_mapping): Scan up to end of line for filename.
* * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.Michal Ludvig2002-03-252-1/+51
|
* 2002-03-24 David O'Brien <obrien@FreeBSD.org>David O'Brien2002-03-252-0/+7
| | | | | | * ppc/hw_disk.c: Export a disk device property. This is needed by the FreeBSD/powerpc porting effort.
* *** empty log message ***gdbadmin2002-03-251-1/+1
|
* daily updateAlan Modra2002-03-241-1/+1
|
* * gen.c (format_name_cmp): New function.Andrew Cagney2002-03-242-1/+31
| | | | | | (insn_list_insert): Use the instruction field name as an additional key. Different field names indicate different semantics.
* * command.h: Update copyright.Andrew Cagney2002-03-247-232/+42
| | | | | | | | | | | | | | | | | | | (struct cmd_list_element): Replace definition with opaque declaration. (enum cmd_types): Document that it will eventually be moved to cli/cli-decode.h (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros. (MALLOCED_REPLACEMENT): Delete macro. * Makefile.in (cli_decode_h): Add $(command_h). (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h). * top.c: Include "cli/cli-decode.h". * completer.c: Include "cli/cli-decode.h". * maint.c: Include "cli/cli-decode.h". * cli/cli-decode.h: Include "command.h". (enum command_class): Delete. (enum cmd_types): Comment out. (enum cmd_auto_boolean): Delete. (enum var_types): Delete.
* * cli/cli-decode.c: Include "gdb_assert.h".Andrew Cagney2002-03-242-41/+51
| | | | | | | (add_set_or_show_cmd): New static function. (add_set_cmd): Rewrite. Use add_set_or_show_cmd. (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy all fields, such as func, from the set command.
* *** empty log message ***gdbadmin2002-03-241-1/+1
|
* daily updateAlan Modra2002-03-231-1/+1
|
* From 2001-12-09 Julien Ducourthial <jducourt@noos.fr>:Andrew Cagney2002-03-232-7/+14
| | | | | | * ppc-instructions (lswx): Do the register control with the register count. Initialize the right register in the loop. (mtfsfi) : Correct prefix for the instruction.
* * MAINTAINERS (sh-elf): Change warning flag to -w.Andrew Cagney2002-03-232-1/+5
|
* * emulparams/elf_x86_64.sh (COMMONPAGESIZE): Set it.Andreas Jaeger2002-03-232-1/+6
|
* * defs.h (error): Add printf format attribute.Andrew Cagney2002-03-239-9/+21
| | | | | | | | | | | * thread-db.c (thread_from_lwp): Fix error format string. * stack.c (parse_frame_specification): Ditto. * cli/cli-decode.c (undef_cmd_error): Ditto. * scm-lang.c (scm_lookup_name): Ditto. * tracepoint.c (trace_error): Ditto. * remote-utils.c (usage): Ditto. * remote.c (compare_sections_command): Ditto. Fix PR gdb/328.
* * ppc-opc.c (vmaddfp): Fix operand order.Matthew Green2002-03-232-1/+5
|