aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2002-09-20 * expr.c (expr): Simplify foo-foo here.Alan Modra2-31/+19
(clean_up_expression): Remove O_subtract code.
2002-09-20Add new tests for charset support.Kevin Buettner3-0/+621
2002-09-20Add support for distinct host and target character sets.Kevin Buettner11-484/+2264
2002-09-20* libiberty.h (asprintf, vasprintf): Don't declare them if theAlexandre Oliva2-0/+9
corresponding HAVE_DECL_ macro is 1.
2002-09-20daily updateAlan Modra1-1/+1
2002-09-20*** empty log message ***gdbadmin1-1/+1
2002-09-19 * write.h (struct fix): Add fx_dot_value.Alan Modra4-1/+22
(dot_value): Declare. * write.c (dot_value): New var. (fix_new_internal): Save dot_value as fx_dot_value. * expr.c (expr): Update dot_value.
2002-09-192002-09-19 Andrew Cagney <ac131313@redhat.com>Andrew Cagney2-18/+121
* gdb.texinfo (Packets): Revise `z' and `Z' packet documentation. (Packets): Add cross reference from `b' packet to `z' packets.
2002-09-19bfd/Jakub Jelinek34-92/+2960
* reloc.c (BFD_RELOC_386_TLS_TPOFF, BFD_RELOC_386_TLS_IE, BFD_RELOC_386_TLS_GOTIE): Add. * bfd-in2.h, libbfd.h: Rebuilt. * elf32-i386.c (elf_howto_table): Add R_386_TLS_TPOFF, R_386_TLS_IE and R_386_TLS_GOTIE. (elf_i386_reloc_type_lookup): Handle it. (struct elf_i386_link_hash_entry): Change tls_type type to unsigned char instead of enum, change GOT_* into defines. (GOT_TLS_IE_POS, GOT_TLS_IE_NEG, GOT_TLS_IE_BOTH): Define. (elf_i386_tls_transition): Handle R_386_TLS_IE and R_386_TLS_GOTIE. (elf_i386_check_relocs): Likewise. Avoid crash if local symbol is accessed both as normal and TLS symbol. Move R_386_TLS_LDM and R_386_PLT32 cases so that R_386_TLS_IE can fall through. Handle R_386_TLS_LE_32 and R_386_TLS_LE in shared libs. (elf_i386_gc_sweep_hook): Handle R_386_TLS_IE and R_386_TLS_GOTIE. Handle R_386_TLS_LE_32 and R_386_TLS_LE in shared libs. (allocate_dynrelocs): Allocate 2 .got and 2 .rel.got entries if tls_type is GOT_TLS_IE_BOTH. (elf_i386_size_dynamic_sections): Likewise. (elf_i386_relocate_section): Handle R_386_TLS_IE and R_386_TLS_GOTIE. Handle R_386_TLS_LE_32 and R_386_TLS_LE in shared libs. (elf_i386_finish_dynamic_symbol): Use tls_type & GOT_TLS_IE to catch all 4 GOT_TLS_* TLS types. gas/ * config/tc-i386.c (tc_i386_fix_adjustable): Handle BFD_RELOC_386_TLS_IE and BFD_RELOC_386_TLS_GOTIE. (BFD_RELOC_386_TLS_IE, BFD_RELOC_386_TLS_GOTIE): Define to 0 if not defined. (lex_got): Handle @GOTNTPOFF and @INDNTPOFF. (md_apply_fix3, tc_gen_reloc): Handle BFD_RELOC_386_TLS_IE and BFD_RELOC_386_TLS_GOTIE. gas/testsuite/ * gas/i386/tlspic.s: Add tests. * gas/i386/tlspic.d: Regenerated. * gas/i386/tlsnopic.s: Add tests. * gas/i386/tlsnopic.d: Regenerated. include/ * elf/i386.h (R_386_TLS_TPOFF, R_386_TLS_IE, R_386_TLS_GOTIE): Define. ld/testsuite/ * ld-i386/i386.exp: New. * ld-i386/tlsbin.dd: New test. * ld-i386/tlsbinpic.s: New test. * ld-i386/tlsbin.rd: New test. * ld-i386/tlsbin.s: New test. * ld-i386/tlsbin.sd: New test. * ld-i386/tlsbin.td: New test. * ld-i386/tlslib.s: New test. * ld-i386/tlsnopic1.s: New test. * ld-i386/tlsnopic2.s: New test. * ld-i386/tlsnopic.dd: New test. * ld-i386/tlsnopic.rd: New test. * ld-i386/tlsnopic.sd: New test. * ld-i386/tlspic1.s: New test. * ld-i386/tlspic2.s: New test. * ld-i386/tlspic.dd: New test. * ld-i386/tlspic.rd: New test. * ld-i386/tlspic.sd: New test. * ld-i386/tlspic.td: New test.
2002-09-19Update email addresses for bugs and patches.Nick Clifton2-1/+6
2002-09-19When examining weak symbols, follow indirect links.Nick Clifton2-1/+9
2002-09-19 * config/tc-alpha.c (md_pcrel_from): Only adjust special forRichard Henderson6-9/+66
branch type relocs. (alpha_force_relocation): Don't special-case branch type relocs. * gas/alpha/elf-reloc-7.s: New. * gas/alpha/elf-reloc-7.d: New. * gas/alpha/alpha.exp: Run it.
2002-09-192002-09-19 Andrew Cagney <ac131313@redhat.com>Andrew Cagney2-0/+27
* gdb.texinfo (Maintenance Commands): Document ``maint internal-error'' and ``maint internal-warning''.
2002-09-19Remove (errant) trailing semicolon (;) from the extern "C" { } declaration.Nick Clifton2-1/+6
2002-09-192002-09-19 Andrew Cagney <ac131313@redhat.com>Andrew Cagney2-2/+30
* gdbint.texinfo (Target Architecture Definition): Revise description of STACK_ALIGN. Add description of FRAME_ALIGN.
2002-09-19Fix error reading ECOFF information: 'ioptMax' refers to the actual *size*Nick Clifton2-1/+6
of the optimization symtab, not the number of entries.
2002-09-19Update to correctly sign-extend 32-bit ECOFF null values (0xffffffff, -1)Nick Clifton2-104/+140
2002-09-192002-09-19 Andrew Cagney <ac131313@redhat.com>Andrew Cagney2-0/+286
* gdb.gdb/complaints.exp: New file.
2002-09-19(elf32_arm_adjust_dynamic_symbol): Update ELF_LINK_HASH_NEEDS_PLT logic.Nick Clifton2-6/+17
2002-09-19Handle situation where architecture has not yet been selected.Nick Clifton2-0/+10
2002-09-19 * ada-exp.y: Add missing semicolons to end rules. Fixes aJoel Brobecker2-1/+8
bison 1.35 warning.
2002-09-19 * gdbint.texinfo (Target Conditionals): Document the newJoel Brobecker2-0/+11
NAME_OF_MALLOC macro.
2002-09-19Fix the ChangeLog entry for my last commit.Jakub Jelinek1-1/+2
2002-09-19Add missing ".Richard Earnshaw1-1/+1
2002-09-19* gdb_mbuild.sh: New file.Richard Earnshaw2-0/+157
2002-09-19Remove v850ea referencesNick Clifton4-329/+8
2002-09-19Credit Apple and AdamF for their part in the objective C patches.Andrew Cagney1-0/+3
2002-09-19Fix (C) and credit Michael Snyder with objc-lang.c.Andrew Cagney4-39/+50
2002-09-19Revert previous change. Not obvious.Andrew Cagney20-247/+55
2002-09-192002-09-18 Michael Snyder <msnyder@redhat.com>Michael Snyder21-184/+446
Preliminary support for Objective-C: * defs.h (language_objc): New enum value. (puts_filtered_tabular): Declaration only, exported from utils.c. (skip_quoted): Delete, declared in completer.h. * c-exp.y: Include completer.h. * p-exp.y: Ditto. * jv-exp.y: Ditto. * expression.h (OP_MSGCALL, OP_SELECTOR, OP_SELF, OP_NSSTRING): New operator enum values. * language.h (CAST_IS_CONVERSION): Test for language_objc. * language.c (binop_result_type): Handle language_objc case. (integral_type, character_type, string_type, boolean_type, structured_type, binop_type_check): Ditto. * symtab.h (SYMBOL_OBJC_DEMANGLED_NAME): Define. (struct objc_specific): Add to general_symbol_info. (SYMBOL_INIT_LANGUAGE_SPECIFIC): Add objc initialization. (SYMBOL_DEMANGLED_NAME): Handle objc case. * parser-defs.h (struct objc_class_str): New struct type. (start_msglist, end_msglist, add_msglist): Declaration only, exported from objc-lang.c. * value.h (value_of_local, value_nsstring, call_function_by_hand_expecting_type): Exported from valops.c. * valops.c (find_function_addr): Export. (call_function_by_hand_expecting_type): New function. (value_of_local): New function. * symfile.c (init_filename_language_table): Add ".m" extension for Objective-C. * utils.c (puts_filtered_tabular): New function. (fprintf_symbol_filtered): Add objc demangling support (disabled). (set/show demangle): Extend help-string to refer to ObjC. * elfread.c (elf_symtab_read): Skip Objective-C special symbols. * stabsread.c (symbol_reference_defined): Objective-C symbols may contain colons: make allowances when scanning stabs strings for colons. (objc_find_colon): New function. * printcmd.c (address_info): If language == objc then print "self" instead of "this". * parse.c (length_of_subexp): Handle new operators OP_MSGCALL, OP_NSSTRING, and OP_SELF. (prefixify_subexp): Ditto. * source.c (print_source_lines): Mention objc in comment. * breakpoint.c (parse_breakpoint_sals): Recognize Objective-C method names.
2002-09-192002-09-18 Andrew Cagney <ac131313@redhat.com>Andrew Cagney5-136/+302
* complaints.h: Update copyright. (struct complaints): Declare. (struct complaint): Make `message' constant. (internal_complaint): Declare. (complaint): Declare. (complaint_root): Delete declaration. (symfile_complaints): Delete declaration. (struct complaints): Add opaque declaration. (clear_complaints): Add a complaints parameter. * complaints.c: Update copyright. (enum complaint_series): Define. (complaint_root): Delete. (struct complaints): Define. (complaint_sentinel, symfile_complaint_book): New variables. (symfile_explanations, symfile_complaints): New variables. New variables. (get_complaints): New function. (vcomplaint): New function. (complaint): New function. (internal_complaint): New function. (complain): Call vcomplain with symfile_complaint. (clear_complaints): Rewrite. (_initialize_complaints): Use add_setshow_command. * Makefile.in (complaints.o): Update dependencies. * symfile.c (syms_from_objfile): Add symfile_complaints parameter to call to clear_complaints. (new_symfile_objfile, reread_symbols): Ditto. (oldsyms_complaint): Delete. (empty_symtab_complaint, unknown_option_complaint): Delete. (free_named_symtabs): Use complaint instead of complain.
2002-09-192002-09-18 Michael Snyder <msnyder@redhat.com>Michael Snyder3-289/+339
* objc-lang.c: First clean-up round: comments, indentation. * objc-lang.h: Ditto. * objc-lang.y: Ditto.
2002-09-19*** empty log message ***gdbadmin1-1/+1
2002-09-19daily updateAlan Modra1-1/+1
2002-09-182002-09-18 Andrew Cagney <ac131313@redhat.com>Andrew Cagney6-23/+151
* maint.c (maintenance_internal_error): Print the parameter as the error message. (maintenance_internal_warning): New function. (_initialize_maint_cmds): Add command `maint internal-warning'. * defs.h (internal_warning, internal_vwarning): Declare. * utils.c (struct internal_problem): Define. (internal_vproblem): New function. (internal_warning): New function. (internal_vwarning): New function. (internal_warning_problem, internal_error_problem): New variables. (internal_verror): Just call internal_vproblem. Index: testsuite/ChangeLog 2002-09-18 Andrew Cagney <ac131313@redhat.com> * gdb.base/maint.exp: Check `help maint internal-warning'.
2002-09-182002-09-18 Michael Snyder <msnyder@redhat.com>Michael Snyder4-0/+3797
* objc-lang.c: New file, support for Objective-C. Preliminary check-in, not yet integrated into gdb. * objc-lang.h: New file. * objc-exp.y: New file.
2002-09-182002-09-18 Andrew Cagney <ac131313@redhat.com>Andrew Cagney3-10/+9
* infrun.c (signal_stop_update): Convert definition to ISO C. (signal_print_update): Ditto. (signal_pass_update): Ditto. * inflow.c (terminal_save_ours): Ditto.
2002-09-182002-09-18 Andrew Cagney <ac131313@redhat.com>Andrew Cagney2-2/+5
* h8300-tdep.c (h8300_gdbarch_init): Use C instead of C++ comments.
2002-09-182002-09-18 Andrew Cagney <ac131313@redhat.com>Andrew Cagney2-2/+8
* config/djgpp/fnchange.lst: Handle name clashes between bfd/coff-tic30.c, bfd/coff-tic4x.c, bfd/coff-tic54x.c and bfd/coff-tic80.c.
2002-09-18Fix GNU/Linux tipo.Andrew Cagney2-3/+7
2002-09-18Add myself to the Write After Approval list.Adam Fedor2-0/+5
2002-09-18[ gas/ChangeLog ]Chris Demetriou1-0/+1
2002-09-18 Chris Demetriou <cgd@broadcom.com> * config/tc-mips.c (md_apply_fix3): Just return for BFD_RELOC_8. [ gas/testsuite/ChangeLog ] 2002-09-18 Chris Demetriou <cgd@broadcom.com> * gas/mips/baddata1.s: New file. * gas/mips/baddata1.l: New file. * gas/mips/mips.exp: Run new test.
2002-09-18[ gas/ChangeLog ]Chris Demetriou6-16/+268
2002-09-18 Chris Demetriou <cgd@broadcom.com> * config/tc-mips.c (IS_SEXT_32BIT_NUM): Move closer to top of file. (IS_SEXT_16BIT_NUM): New macro. (macro_build_ldst_constoffset): New function, to build a set of instructions to do a load or store from a constant offset relative to a given register. (macro, s_cprestore): Use macro_build_ldst_constoffset to implement .cprestore pseudo-op. [ gas/testsuite/ChangeLog ] 2002-09-18 Chris Demetriou <cgd@broadcom.com> * gas/mips/mips-abi32-pic2.s: New file. * gas/mips/mips-abi32-pic2.d: New file. * gas/mips/mips.exp: Run new test. [ plus, fixed date on prev. gas/testsuite/ChangeLog entry. ]
2002-09-18[ gas/ChangeLog ]Chris Demetriou5-0/+27
2002-09-18 Chris Demetriou <cgd@broadcom.com> * config/tc-mips.c (md_apply_fix3): Just return for BFD_RELOC_8. [ gas/testsuite/ChangeLog ] 2002-09-18 Chris Demetriou <cgd@broadcom.com> * gas/mips/baddata1.s: New file. * gas/mips/baddata1.l: New file. * gas/mips/mips.exp: Run new test.
2002-09-18[ gas/testsuite/ChangeLog ]Chris Demetriou10-0/+194
2002-09-18 Chris Demetriou <cgd@broadcom.com> * gas/mips/branch-misc-1.d: New file. * gas/mips/branch-misc-1.s: New file. * gas/mips/branch-misc-2.s: New file. * gas/mips/branch-misc-2.d: New file. * gas/mips/mips.exp: Run new tests. [ ld/testsuite/ChangeLog ] 2002-09-18 Chris Demetriou <cgd@broadcom.com> * ld-mips-elf/branch-misc-1.d: New file. * ld-mips-elf/branch-misc-2.d: New file. * ld-mips-elf/mips-elf.exp: Run new tests.
2002-09-18* dbxread.c, mdebugread.c: Revert my change of 2001-10-23. MovingJim Blandy3-103/+64
texthigh and textlow to reader-specific structs caused objfile_relocate to miss them. This is fixable, but the work that the change was supposed to prepare GDB for never got done anyway.
2002-09-182002-09-18 David Carlton <carlton@math.stanford.edu>David Carlton9-8/+242
* gdb.c++/m-static.exp: Remove breakpoints depending on line numbers, and replace them by a single breakpoint after the constructors are all finished. Add test 4. * gdb.c++/m-static.cc: Add test 4. * gdb.c++/m-static.h: New file. * gdb.c++/m-static1.cc: New file. * gdb.c++/printmethod.exp: New file. * gdb.c++/printmethod.cc: New file. * gdb.c++/pr-574.exp: New file. * gdb.c++/pr-574.cc: New file.
2002-09-182002-09-18 David Carlton <carlton@math.stanford.edu>David Carlton2-4/+8
* MAINTAINERS: Alphabetize Write After Approval list.
2002-09-18* elf64-mips.c (mips_elf64_be_swap_reloca_out): Handle type2 and type3.Stan Cox1-2/+2
2002-09-18 * gdb.base/ending-run.exp: Add handling of "step to end of run" forCorinna Vinschen2-0/+8
embedded targets which never actually exit.