aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2000-05-08DataDirectory virtual address is relative. Fix to suit.Alan Modra2-102/+98
2000-05-08(setup_section): Add const and gettext calls for err.Alan Modra2-7/+11
2000-05-08Move some of the MIPS n32 ABI configuration options into the mipsAndrew Cagney3-55/+140
multi-arch vector.
2000-05-07* procfs.c (PROCFS_TRACE): Delete definition.Andrew Cagney3-2/+7
* proc-utils.h (PROCFS_NOTE, PROC_PRETTYFPRINT_STATUS): Always define.
2000-05-07Typo correction, again from Brian Youmans.Eli Zaretskii1-5/+4
2000-05-07 * gdbmi.texinfo: Lots of typos and grammar fixes from BrianEli Zaretskii2-32/+39
Youmans <3diff@flib.gnu.ai.mit.edu>.
2000-05-06Support for tic54x target.Timothy Wall10-0/+1311
2000-05-06 * xcoff.h: Rename to xcoff-target.hClinton Popetz7-11/+20
* Makefile.am: Change all instances of xcoff.h to xcoff-target.h * coff-rs6000.c: Ditto. * coff64-rs6000.c: Ditto. * coff-pmac.c: Ditto. * Makefile.in: Regenerate.
2000-05-06bfd:Clinton Popetz4-6/+16
* coffcode.h (coff_set_arch_mach_hook, coff_set_flags): Change U802TOC64MAGIC to U803XTOCMAGIC. include: * coff/rs6k64.h (U802TOC64MAGIC): Change to U803XTOCMAGIC.
2000-05-052000-04-28 Michael Snyder <msnyder@seadog.cygnus.com>Michael Snyder2-0/+7
* gdb.base/break.exp: When compiled with -O2 optimization, gdb may not stop at the first line of main, due to code motion.
2000-05-052000-05-05 Michael Snyder <msnyder@seadog.cygnus.com>Michael Snyder4-113/+145
* procfs.c: Cleanup of procfs tracing. Move defines and prototypes to proc-utils.h * proc-utils.h: Define tracing macros. Declare trace functions. * proc-api.c: Make procfs tracing a runtime option. (prepare_to_trace): New function, abstracted out of several places. Open a trace file if one is required. (ioctl_with_trace, write_with_trace, open_with_trace, close_with_trace, wait_with_trace, lseek_with_trace): Report errno if an error occurs in a system call. (write_with_trace): Make 2nd arg void *, to agree with write.
2000-05-052000-05-04 Elena Zannoni <ezannoni@kwikemart.cygnus.com>Elena Zannoni2-3/+10
* elfread.c (elf_symtab_read): The calculation of 'offset' must be done for each symbol, not just once. The index used must be the index of the section where 'sym' resides, not .text.
2000-05-052000-05-05 Michael Snyder <msnyder@seadog.cygnus.com>Michael Snyder3-17/+27
* procfs.c (many functions): change int cmd; to long cmd; Solaris /proc API calls this parameter a long, and requires it for 64-bit hosts (where sizeof(long) != sizeof(int)). UnixWare calls it an int, but on existing UnixWare hosts, int and long are the same size. So long it must be. If a future UnixWare version has problems with this, we'll have to use autoconf. * proc-api.c (write_with_trace): use long instead of int.
2000-05-052000-05-03 Michael Snyder <msnyder@seadog.cygnus.com>Michael Snyder2-49/+74
* solib.c (elf_locate_base, info_sharedlibrary_command): Look at the bfd to determine if it is elf32 or elf64, rather than using an ifdef. This makes it runtime teststable and multi-arch.
2000-05-052000-05-04 Michael Snyder <msnyder@seadog.cygnus.com>Michael Snyder4-3/+30
* elf.c (bfd_elf_get_arch_size): New function, return 32 | 64 | -1. * bfd-in.h: Prototype bfd_elf_get_arch_size. * bfd-in2.h: Prototype bfd_elf_get_arch_size.
2000-05-04* i386-linux-nat.c: Define PT_READ_U and PT_WRITE_U if they're notMark Kettenis2-0/+12
already defined.
2000-05-04* infrun.c (handle_inferior_event): Add missing call to keep_goingMark Kettenis2-0/+8
and missing return when handling an ordinary signal from the inferior.
2000-05-04Elena Zannoni <ezannoni@kwikemart.cygnus.com>Elena Zannoni25-248/+365
* objfiles.h (SECT_OFF_DATA, SECT_OFF_TEXT, SECT_OFF_BSS, SECT_OFF_RODATA): Define as functions of OBJFILE. Add sect_index_text, sect_index_data, sect_index_rodata, sect_index_bss to objfile structure. * gdb-stabs.h (SECT_OFF_DATA, SECT_OFF_TEXT, SECT_OFF_BSS, SECT_OFF_RODATA): Remove. * objfiles.c (allocate_objfile): Initialize sect_index_{text,data,bss,rodata} to -1, for error detection. * symfile.c (default_symfile_offsets): Initialize sect_index_{text,data,bss,rodata} from bfd information. * xcoffread.c (xcoff_symfile_offsets): Ditto. * somread.c (som_symfile_offsets): Initialize sect_index_{text,data,bss,rodata}. * coffread.c, dbxread.c, elfread.c, hp-psymtab-read.c, hp-symtab-read.c, hpread.c, mdebugread.c, minsyms.c, mipsread.c, objfiles.c, os9kread.c, pa64solib.c, partial-stab.h, remote-os9k.c, remote-vx.c, remote.c, rs6000-nat.c, somsolib.c, stabsread.c, symfile.c, xcoffread.c: Update use of SECT_OFF_{TEXT,DATA,BSS,RODATA} to depend on the current objfile. * xcoffread.c: Add new field objfile to find_targ_sec_arg.
2000-05-04Remove more defunct macros.Andrew Cagney2-3/+2
2000-05-04Fix thinko in 2000-05-02 change.Alan Modra2-1/+5
2000-05-04Cleanups. Zap unused macros.Andrew Cagney4-18/+10
2000-05-042000-05-03 Martin v. Löwis <loewis@informatik.hu-berlin.de>H.J. Lu3-5/+33
* elflink.h (elf_link_add_object_symbols): Reset dynindx for hidden and internal symbols. (elf_fix_symbol_flags): Clear NEEDS_PLT for symbols with visibility. * elflink.c (_bfd_elf_link_record_dynamic_symbol): Do not assign a PLT or GOT entry to symbols with hidden and internal visibility.
2000-05-04Just mention current year in printed copyright message.Alan Modra2-2/+6
2000-05-03* ppc-opc.c (VA, VB, VC, VD, VS, SIMM, UIMM, SHB): New macros, forJ.T. Conklin3-4/+247
vector unit operands. (VX, VX_MASK, VXA, VXA_MASK, VXR, VXR_MASK): New macros, for vector unit instruction formats. (PPCVEC): New macro, mask for vector instructions. (powerpc_operands): Add table entries for above operand types. (powerpc_opcodes): Add table entries for vector instructions. * ppc-dis.c (print_insn_big_powerpc): Add PPC_OPCODE_ALTIVEC to mask. (print_insn_little_powerpc): Likewise. (print_insn_powerpc): Prepend 'v' when printing vector registers.
2000-05-03* config/tc-ppc.c (pre_defined_registers): Add entries for vectorJ.T. Conklin2-1/+78
unit registers. (md_parse_option): Recognize -m7400.
2000-05-03* ppc.h (PPC_OPCODE_ALTIVEC): New opcode flag for vector unit.J.T. Conklin2-0/+13
(PPC_OPERAND_VR): New operand flag for vector registers.
2000-05-03Insert missing entryDaniel Berlin1-0/+4
2000-05-03 * config/atof-ieee.c (gen_to_words): When adding carry back in,Ian Lance Taylor2-2/+9
don't permit lp to become less than the words array.
2000-05-03* infrun.c (handle_inferior_event): When doing a "next", andMark Kettenis2-1/+23
stepping out of a signal handler into its calling trampoline ignore the value of step_frame_address. (step_over_function): Only modify step_resume_breakpoint->frame if the value of step_frame_address is non-zero.
2000-05-03Fix little endian relocsNick Clifton2-25/+24
2000-05-032000-05-03 Michael Snyder <msnyder@seadog.cygnus.com>Michael Snyder2-3/+12
* monitor.c (monitor_fetch_register): MAX_REGISTER_RAW_SIZE is not static in the MULTI_ARCH world, so don't use it in a static array declaration.
2000-05-03Tue May 2 13:17:21 2000 Elena Zannoni (ezannoni@makita.cygnus.com)Elena Zannoni2-30/+57
* symtab.c (in_prologue): From Jim Blandy. Rewrite, more intelligently, making sure we use the information from the symbol tables fully.
2000-05-03Fix 64 bit target section start on 32 bit machine.Alan Modra2-3/+9
2000-05-03Add missing ChangeLog.Andrew Cagney2-1/+25
Sync with mitsu's version.
2000-05-03Update copyright message.Alan Modra2-1/+6
2000-05-03go32 bss alignment.Alan Modra5-0/+16
2000-05-022000-05-02 H.J. Lu <hjl@gnu.org>H.J. Lu2-1/+6
* ia64-tdep.c (ia64_gdbarch_init): Reference to ELFOSABI_NONE instead of ELFOSABI_SYSV.
2000-05-022000-05-02 H.J. Lu <hjl@gnu.org>H.J. Lu2-1/+18
* readelf.c (get_osabi_name): Handle ELFOSABI_NONE instead of ELFOSABI_SYSV. Also handle ELFOSABI_NETBSD, ELFOSABI_HURD, ELFOSABI_SOLARIS, ELFOSABI_MONTEREY, ELFOSABI_IRIX, ELFOSABI_FREEBSD, ELFOSABI_TRU64, ELFOSABI_MODESTO and ELFOSABI_OPENBSD.
2000-05-022000-05-02 H.J. Lu <hjl@gnu.org>H.J. Lu2-1/+6
* elf.c (prep_headers): USe ELFOSABI_NONE instead of ELFOSABI_SYSV.
2000-05-022000-05-02 H.J. Lu <hjl@gnu.org>H.J. Lu2-1/+9
* common.h (ELFOSABI_NONE): Renamed from ELFOSABI_SYSV. (ELFOSABI_MODESTO): Defined. (ELFOSABI_OPENBSD): Likewise.
2000-05-02Correct a typo in the author's surname!Ben Elliston1-1/+1
2000-05-02Restore elf32-hppa target vec.Alan Modra4-8/+21
2000-05-02Multi-arch NPC_REGNUM NNPC_REGNUM.Andrew Cagney7-13/+92
2000-05-02revert 1.9. Not approved.Andrew Cagney1-2/+0
2000-05-02re-do how gdbarch provides non-multi arch defaults so that non-Andrew Cagney6-70/+240
multi-arch gdbservers can continue to compile.
2000-05-02Add JimB to global checkin listAndrew Cagney2-0/+2
2000-05-02Add ElenaZ to symtabs maintainers list.Andrew Cagney2-4/+9
2000-05-02Make Syd Polk principal maintainer.Andrew Cagney2-2/+8
2000-05-02fix gcc warningsAlan Modra4-18/+25
2000-05-02Fix just added ia64-linux support to conform with others.Jim Wilson2-2/+4
* configure.host (ia64-*-linux-gnu*): Change gcc to ${CC}.